Removing debug info in stderr.
authorlbatlle@npdl268.bpo.hp.com
Thu, 31 May 2007 12:01:18 +0200
changeset 8 4ecd557ebebf
parent 7 fcde17ef6af6
child 12 f81dd70a9b0b
Removing debug info in stderr.
c_str.c
sreplace.c
--- a/c_str.c	Thu May 31 00:17:52 2007 +0200
+++ b/c_str.c	Thu May 31 12:01:18 2007 +0200
@@ -144,7 +144,9 @@
 {
     int i;
 
+    /*
     fprintf(out, "Length: %i\n", str->length);
+    */
     for (i = 0; i < str->length; ++i)
         fprintf(out, "%02hhx", str->ptr[i]);
 }
--- a/sreplace.c	Thu May 31 00:17:52 2007 +0200
+++ b/sreplace.c	Thu May 31 12:01:18 2007 +0200
@@ -249,14 +249,18 @@
   new_str.ptr = argv[2];
 
   old_str.length = parse_backslashes(old_str.ptr);
+  /*
   fprintf(stderr, "OLD: ");
   print_hex(stderr, &old_str);
   fprintf(stderr, "\n");
+  */
 
   new_str.length = parse_backslashes(new_str.ptr);
+  /*
   fprintf(stderr, "NEW: ");
   print_hex(stderr, &new_str);
   fprintf(stderr, "\n");
+  */
 }
 
 int main(int argc, char ** argv)