Skip to content

Commit

Permalink
linebuf: 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 001706c commit 14623ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libmowgli/linebuf/linebuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ mowgli_linebuf_write_data(mowgli_eventloop_t *eventloop, mowgli_eventloop_io_t *
if (ret != 0)
{
mowgli_pollable_setselect(eventloop, io, MOWGLI_EVENTLOOP_IO_WRITE, NULL);
mowgli_log("mowgli_vio_write returned error [%ld]: %s", linebuf->vio->error.code, linebuf->vio->error.string);
mowgli_log("mowgli_vio_write returned error [%lu]: %s", linebuf->vio->error.code, linebuf->vio->error.string);
return;
}

Expand Down

0 comments on commit 14623ef

Please sign in to comment.