diff options
author | Brian Behlendorf <[email protected]> | 2010-08-26 09:52:41 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2010-08-27 15:34:03 -0700 |
commit | e75c13c353571efaa9b4e047f16969ec13a518f5 (patch) | |
tree | d6d4092487d7ca7084de7cb78b30fd527e6ac472 /cmd/ztest | |
parent | 2598c0012dc33496539ce893a0af601c66cbb7e2 (diff) |
Fix gcc missing case warnings
Gcc ASSERT() missing cases are impossible
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'cmd/ztest')
-rw-r--r-- | cmd/ztest/ztest.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/ztest/ztest.c b/cmd/ztest/ztest.c index fbc3c2cc9..5677dcb85 100644 --- a/cmd/ztest/ztest.c +++ b/cmd/ztest/ztest.c @@ -1998,6 +1998,8 @@ ztest_io(ztest_ds_t *zd, uint64_t object, uint64_t offset) case ZTEST_IO_SETATTR: (void) ztest_setattr(zd, object); break; + default: + break; } umem_free(data, blocksize); |