Skip to content

Commit

Permalink
Fix logging of uint32 variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Berg authored and hefloryd committed Mar 28, 2021
1 parent 9857aba commit 5a1917e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/device/pf_cmdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -5089,9 +5089,9 @@ int pf_cmdev_cm_ccontrol_req (pnet_t * net, pf_ar_t * p_ar)
p_iodata->slot_nbr,
p_iodata->subslot_nbr,
p_owning_ar->arep,
p_owning_iocr->crep,
(unsigned)p_owning_iocr->crep,
p_ar->arep,
p_ar->iocrs[ix].crep);
(unsigned)p_ar->iocrs[ix].crep);
}

/* Member data_avail is set directly by the PPM. The value
Expand Down

0 comments on commit 5a1917e

Please sign in to comment.