Add extra () requested by gcc
This commit is contained in:
parent
29703a5b4e
commit
fed604c844
|
@ -1103,7 +1103,7 @@ dmu_tx_callback(list_t *cb_list, int error)
|
|||
{
|
||||
dmu_tx_callback_t *dcb;
|
||||
|
||||
while (dcb = list_head(cb_list)) {
|
||||
while ((dcb = list_head(cb_list))) {
|
||||
list_remove(cb_list, dcb);
|
||||
dcb->dcb_func(dcb->dcb_data, error);
|
||||
kmem_free(dcb, sizeof (dmu_tx_callback_t));
|
||||
|
|
Loading…
Reference in New Issue