Skip to content

Commit

Permalink
fix warnings about invalid printf format characters
Browse files Browse the repository at this point in the history
  • Loading branch information
stv0g committed Nov 11, 2022
1 parent f8d2c1c commit 95e9c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orig/axidma_v9_13/src/xaxidma_bdring.c
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,7 @@ int XAxiDma_BdRingFree(XAxiDma_BdRing * RingPtr, int NumBd,
if ((RingPtr->PostCnt < NumBd) || (RingPtr->PostHead != BdSetPtr)) {

xdbg_printf(XDBG_DEBUG_ERROR, "BdRingFree: Error free BDs: "
"post count %d to free %d, PostHead %x to free ptr %x\r\n",
"post count %d to free %d, PostHead %lx to free ptr %lx\r\n",
RingPtr->PostCnt, NumBd,
(UINTPTR)RingPtr->PostHead,
(UINTPTR)BdSetPtr);
Expand Down

0 comments on commit 95e9c39

Please sign in to comment.