batchtest partially working
[lttv.git] / ltt / branches / poly / ltt / parser.c
index 24ffa52123a31bfb09b16687e78f49f0339fcfe9..aa87db950f66ede7cbfe018efdb477b6b7c97590 100644 (file)
@@ -1188,12 +1188,12 @@ unsigned long getTypeChecksum(unsigned long aCrc, type_descriptor_t * type)
       flag = 1;
       break;
     case ARRAY:
-      sprintf(buf,"%d\0",type->size);
+      sprintf(buf,"%d",type->size);
       str = appendString("array ",buf);
       flag = 1;
       break;
     case SEQUENCE:
-      sprintf(buf,"%d\0",type->size);
+      sprintf(buf,"%d",type->size);
       str = appendString("sequence ",buf);
       flag = 1;
       break;
This page took 0.023372 seconds and 4 git commands to generate.