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.

MFC after:	3 days
Reported by:	amd64-gcc-6.3.0 (devel/amd64-xtoolchain-gcc)
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-03-28 20:52:59 +00:00
parent 5b594b7f21
commit e468767c4b

View file

@ -68,7 +68,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;