Update of /cvsroot/perfparse/_perfparse/db_tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32584
Modified Files:
convert.c
Log Message:
tmp
Index: convert.c
===================================================================
RCS file: /cvsroot/perfparse/_perfparse/db_tools/convert.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** convert.c 5 Dec 2006 22:17:10 -0000 1.6
--- convert.c 6 Dec 2006 13:45:30 -0000 1.7
***************
*** 157,162 ****
i=regexec(preg,resultstr,nmatch,pmatch,REG_NOTEOL);
printf("Returncode matching the pattern is %d\n",i);
! for (i=0;i<nmatch;i++) {
! printf("Match %d so: %d, eo:%d\n",i,pmatch[i].rm_so,pmatch[i].rm_eo);
}
}
--- 157,165 ----
i=regexec(preg,resultstr,nmatch,pmatch,REG_NOTEOL);
printf("Returncode matching the pattern is %d\n",i);
! if(i==0) {
! printf("Jumpin in matches\n");
! for (i=0;i<nmatch;i++) {
! printf("Match %d so: %d, eo:%d\n",i,pmatch[i].rm_so,pmatch[i].rm_eo);
! }
}
}
|