summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2010-10-15 08:24:03 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-10-21 22:21:23 +0200
commitf167796416c48d915ae5b6f40c07e5633ef9b956 (patch)
tree64e52b82a676396171df210fa0cc700704b7e345 /lib
parenta09eea302b1cf4919cedf167b68354fd7d8cc5f6 (diff)
downloadbarebox-f167796416c48d915ae5b6f40c07e5633ef9b956.tar.gz
barebox-f167796416c48d915ae5b6f40c07e5633ef9b956.tar.xz
crc32: sparse fixes
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/crc32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crc32.c b/lib/crc32.c
index 34817824f1..275edb4c52 100644
--- a/lib/crc32.c
+++ b/lib/crc32.c
@@ -42,7 +42,7 @@ static void make_crc_table(void);
the information needed to generate CRC's on data a byte at a time for all
combinations of CRC register values and incoming bytes.
*/
-static void make_crc_table()
+static void make_crc_table(void)
{
ulong c;
int n, k;