You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/02/12 08:26:28 UTC

svn commit: r1445040 - /subversion/branches/fsfs-format7/tools/dev/fsfs-access-map.c

Author: stefan2
Date: Tue Feb 12 07:26:28 2013
New Revision: 1445040

URL: http://svn.apache.org/r1445040
Log:
On the fsfs-format7 branch: make handle fsfs-access-map another
issue with strace output.

* tools/dev/fsfs-access-map.c
  (parse_line): number of spaces between proc number & func name
   is variable

Modified:
    subversion/branches/fsfs-format7/tools/dev/fsfs-access-map.c

Modified: subversion/branches/fsfs-format7/tools/dev/fsfs-access-map.c
URL: http://svn.apache.org/viewvc/subversion/branches/fsfs-format7/tools/dev/fsfs-access-map.c?rev=1445040&r1=1445039&r2=1445040&view=diff
==============================================================================
--- subversion/branches/fsfs-format7/tools/dev/fsfs-access-map.c (original)
+++ subversion/branches/fsfs-format7/tools/dev/fsfs-access-map.c Tue Feb 12 07:26:28 2013
@@ -291,7 +291,8 @@ parse_line(svn_stringbuf_t *line)
   if (func_start == NULL || func_start > func_end)
     func_start = line->data;
   else
-    func_start++;
+    while(*func_start == ' ')
+      func_start++;
   
   first_param_end = strchr(func_end, ',');
   if (first_param_end == NULL)