1
0
Fork 0

processor: assertion delta is signed

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@197 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
Xuefer 2006-09-24 08:29:28 +00:00
parent 01bd668358
commit d30fc0a479
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ define(`ALLOC', `
unsigned long atline = (unsigned long) xc_stack_pop(&processor->allocsizes);
unsigned long real = SIZE;
if (expect != real) {
fprintf(stderr, "mismatch `$@' at line %d(was %d): real %lu - expect %lu = %lu\n", __LINE__, atline, real, expect, real - expect);
fprintf(stderr, "mismatch `$@' at line %d(was %d): real %lu - expect %lu = %l\n", __LINE__, atline, real, expect, real - expect);
}
}
}')