Fix uninitialized variable error in ztest_dmu_commit_callbacks()

This commit is contained in:
Brian Behlendorf 2009-03-20 09:20:49 -07:00
parent fed604c844
commit 99da5f93e8
1 changed files with 1 additions and 1 deletions

View File

@ -2536,7 +2536,7 @@ ztest_dmu_commit_callbacks(ztest_args_t *za)
ztest_cb_list_t *zcl = &ztest_shared->zs_cb_list;
ztest_cb_data_t *cb_data[3], *tmp_cb;
uint64_t old_txg, txg;
int i, error;
int i, error = 0;
tx = dmu_tx_create(os);