From 5599502a550a7f892d4b73dceb2105a6916f83e6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 18 May 2008 22:28:26 +0000 Subject: more -Wall warning fixes. -Wall is enabled now. --- coreutils/cksum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils') diff --git a/coreutils/cksum.c b/coreutils/cksum.c index 6512ccc17..074d06811 100644 --- a/coreutils/cksum.c +++ b/coreutils/cksum.c @@ -34,7 +34,7 @@ int cksum_main(int argc ATTRIBUTE_UNUSED, char **argv) #define read_buf bb_common_bufsiz1 while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) { - cp = read_buf; + cp = (uint8_t *) read_buf; length += bytes_read; do { crc = (crc << 8) ^ crc32_table[(crc >> 24) ^ *cp++]; -- cgit v1.2.3