Add extra () requested by gcc

This commit is contained in:
Brian Behlendorf 2009-03-19 21:18:54 -07:00
parent 29703a5b4e
commit fed604c844
1 changed files with 1 additions and 1 deletions

View File

@ -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));