sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit a4d9b7b11e61cd34d9c6e900118976ed94d61472
parent 2e98468788fd42850622d78f29e49b92a120914a
Author: FRIGN <dev@frign.de>
Date:   Sat,  1 Feb 2014 20:14:25 +0000

Use PRIu32 and avoid cast

Diffstat:
Mcksum.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cksum.c b/cksum.c @@ -1,5 +1,6 @@ /* See LICENSE file for copyright and license details. */ #include <stdint.h> +#include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -106,7 +107,7 @@ cksum(FILE *fp, const char *s) for(i = len; i > 0; i >>= 8) ck = (ck << 8) ^ crctab[(ck >> 24) ^ (i & 0xFF)]; - printf("%lu %lu", (unsigned long)~ck, (unsigned long)len); + printf("%"PRIu32" %lu", ~ck, (unsigned long)len); if(s != NULL) printf(" %s", s); putchar('\n');