Skip to content

Commit

Permalink
module/interface: avoid %d/%u sign confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmdjones committed Apr 5, 2019
1 parent 14623ef commit 8d8e3fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libmowgli/module/interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ mowgli_interface_get(const char *id, uint32_t abirev)
base_iface = mowgli_patricia_retrieve(mowgli_interface_dict, id);
if (base_iface->abirev != abirev)
{
mowgli_log("requested interface %s, abi mismatch %d != %d", id, abirev, base_iface->abirev);
mowgli_log("requested interface %s, abi mismatch %" PRIu32 " != %" PRIu32, id, abirev, base_iface->abirev);
base_iface = NULL;
}

Expand Down

0 comments on commit 8d8e3fd

Please sign in to comment.