diff options
author | Brian Behlendorf <[email protected]> | 2009-03-11 20:52:21 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-03-11 20:52:21 -0700 |
commit | d4dbc7dca843c140a058ec8e873d6c43f5d0d12a (patch) | |
tree | 7e9134aa47de3051a165c579502bc599f0368d3b /module | |
parent | d164b2093561a9771db07346e6fffc9ca19427a2 (diff) |
Resolve all instances of missing braces.
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/dsl_dataset.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/zfs/dsl_dataset.c b/module/zfs/dsl_dataset.c index a68b12d33..e16154d7f 100644 --- a/module/zfs/dsl_dataset.c +++ b/module/zfs/dsl_dataset.c @@ -2613,10 +2613,11 @@ dsl_dataset_promote(const char *name) dsl_dir_t *dd; dsl_pool_t *dp; dmu_object_info_t doi; - struct promotearg pa = { 0 }; + struct promotearg pa; struct promotenode *snap; int err; + bzero(&pa, sizeof(struct promotearg)); err = dsl_dataset_hold(name, FTAG, &ds); if (err) return (err); |