Skip to content

Commit

Permalink
s: missing-braces
Browse files Browse the repository at this point in the history
  • Loading branch information
nabijaczleweli committed Jan 22, 2022
1 parent b17bf3a commit 6923944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/os/linux/zfs/zio_crypt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1885,7 +1885,7 @@ zio_do_crypt_data(boolean_t encrypt, zio_crypt_key_t *key,
uint64_t crypt = key->zk_crypt;
uint_t keydata_len = zio_crypt_table[crypt].ci_keylen;
uint_t enc_len, auth_len;
zfs_uio_t puio = {0}, cuio = {0};
zfs_uio_t puio = {{0}}, cuio = {{0}};
uint8_t enc_keydata[MASTER_KEY_MAX_LEN];
crypto_key_t tmp_ckey, *ckey = NULL;
crypto_ctx_template_t tmpl;
Expand Down

0 comments on commit 6923944

Please sign in to comment.