summaryrefslogtreecommitdiffstats
path: root/cmd/zinject/zinject.c
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2010-12-16 14:05:42 -0800
committerBrian Behlendorf <[email protected]>2011-01-06 15:04:28 -0800
commit149e873ab174ded1f632f2b2eb2267593517c7ca (patch)
treecfc9d55c194367dd5e7407112103b65baca9e230 /cmd/zinject/zinject.c
parent683fe41fc718fd43f57aa9ca76457fe34e62057c (diff)
Fix minor compiler warnings
These compiler warnings were introduced when code which was previously #ifdef'ed out by HAVE_ZPL was re-added for use by the posix layer. All of the following changes should be obviously correct and will cause no semantic changes.
Diffstat (limited to 'cmd/zinject/zinject.c')
-rw-r--r--cmd/zinject/zinject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/zinject/zinject.c b/cmd/zinject/zinject.c
index 3ad90e329..e76e626fa 100644
--- a/cmd/zinject/zinject.c
+++ b/cmd/zinject/zinject.c
@@ -566,7 +566,7 @@ main(int argc, char **argv)
zinject_record_t record = { 0 };
char pool[MAXNAMELEN];
char dataset[MAXNAMELEN];
- zfs_handle_t *zhp;
+ zfs_handle_t *zhp = NULL;
int nowrites = 0;
int dur_txg = 0;
int dur_secs = 0;