summaryrefslogtreecommitdiff
path: root/crc32c.h
diff options
context:
space:
mode:
authorMiao Xie <miaox@cn.fujitsu.com>2012-08-10 10:46:16 +0800
committerroot <root@localhost.localdomain>2012-10-04 16:26:31 -0400
commit3b4e2d61961f7308885cce98bfecdf07d6c0ed01 (patch)
tree6bb4bef5898f4591d365dbd6fce86a95f692ce16 /crc32c.h
parentd88f33152f3d69240b6c690188b5d832a1663c07 (diff)
Btrfs-progs: fix several complie warning
This patch fixed the following warning: cmds-send.c:464:6: warning: ‘ret' may be used uninitialized in this function [-Wuninitialized] crc32c.c:121:1: warning: control reaches end of non-void function [-Wreturn-type] send-utils.c:69:11: warning: ‘comp' may be used uninitialized in this function [-Wuninitialized] send-utils.c:126:6: warning: ‘comp' may be used uninitialized in this function [-Wuninitialized] send-utils.c:99:22: warning: ‘entry' may be used uninitialized in this function [-Wuninitialized] btrfs.c:261:2: warning: implicit declaration of function ‘crc32c_optimization_init' [-Wimplicit-function-declaration] btrfs.c:105:2: warning: ‘cmd' may be used uninitialized in this function [-Wuninitialized] restore.c:435:12: warning: ignoring return value of ‘ftruncate', declared with attribute warn_unused_result [-Wunused-result] Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Diffstat (limited to 'crc32c.h')
-rw-r--r--crc32c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crc32c.h b/crc32c.h
index 27f298a8..7f12e770 100644
--- a/crc32c.h
+++ b/crc32c.h
@@ -22,7 +22,7 @@
#include "kerncompat.h"
u32 crc32c_le(u32 seed, unsigned char const *data, size_t length);
-int crc32c_optimization_init(void);
+void crc32c_optimization_init(void);
#define crc32c(seed, data, length) crc32c_le(seed, (unsigned char const *)data, length)
#define btrfs_crc32c crc32c