diff options
Diffstat (limited to 'apps/check_counter.c')
| -rw-r--r-- | apps/check_counter.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/apps/check_counter.c b/apps/check_counter.c index b19b7d0..3774d4f 100644 --- a/apps/check_counter.c +++ b/apps/check_counter.c @@ -30,7 +30,7 @@ int main(int argc, char *argv[]) {  	for (; i < n; i++) {  	    if ((buf[i]) != ++value) { -		printf("Pos %lx (Block %i, dword %i) expected %x, but got %x\n", block * 4096 + i * 4, block, i, value, (buf[i])); +		printf("Pos %lx (Block %i, dword %i) expected %x, but got %x\n", block * 4096l + i * 4, block, i, value, (buf[i]));  		exit(1);  	    }  	} | 
