diff options
author | ngie <ngie@FreeBSD.org> | 2017-03-31 04:44:35 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-03-31 04:44:35 +0000 |
commit | f1f20f7e6359e7c1a8ae2b9b7bec0e1fc106af39 (patch) | |
tree | fe6a2191fd4aa234a8d73f5183a2d0fc2771590f | |
parent | 8226952ad136a1d3ffbd8445f6cc705821f741cb (diff) | |
download | FreeBSD-src-f1f20f7e6359e7c1a8ae2b9b7bec0e1fc106af39.zip FreeBSD-src-f1f20f7e6359e7c1a8ae2b9b7bec0e1fc106af39.tar.gz |
MFC r316107:
Remove redundant declaration for `zfs_crc64_table`
zfssubr.c already defines this statically. Besides, zfsimpl.c defined it, but
didn't use it.
This fixes a -Wredundant-decls warning.
-rw-r--r-- | sys/boot/zfs/zfsimpl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/boot/zfs/zfsimpl.c b/sys/boot/zfs/zfsimpl.c index 4c45924..69d29db 100644 --- a/sys/boot/zfs/zfsimpl.c +++ b/sys/boot/zfs/zfsimpl.c @@ -66,7 +66,6 @@ static const char *features_for_read[] = { */ static spa_list_t zfs_pools; -static uint64_t zfs_crc64_table[256]; static const dnode_phys_t *dnode_cache_obj = NULL; static uint64_t dnode_cache_bn; static char *dnode_cache_buf; |