Changeset 295 for trunk/processor
- Timestamp:
- 12/03/2006 01:48:53 AM (2 years ago)
- Location:
- trunk/processor
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/head.m4
r233 r295 89 89 static void xc_dprint_str_len(const char *str, int len) /* {{{ */ 90 90 { 91 const unsigned char *p = str;91 const unsigned char *p = (const unsigned char *) str; 92 92 int i; 93 93 for (i = 0; i < len; i ++) { -
trunk/processor/main.m4
r292 r295 46 46 unsigned long real = SIZE; 47 47 if (expect != real) { 48 fprintf(stderr, "mismatch `$@' at line %d(was % d): real %lu - expect %lu = %l\n", __LINE__, atline, real, expect, real - expect);48 fprintf(stderr, "mismatch `$@' at line %d(was %lu): real %lu - expect %lu = %lu\n", __LINE__, atline, real, expect, real - expect); 49 49 } 50 50 }

