Fix: Cleanup debug formats

This commit is contained in:
Denis Kenzior 2009-10-14 16:34:59 -05:00
parent d4d1617684
commit 20dc22a6c4
1 changed files with 2 additions and 2 deletions

View File

@ -313,7 +313,7 @@ void g_at_mux_feed_dlc_data(GAtMux *mux, guint8 dlc,
int offset;
int bit;
DBG("deliver_data: dlc: %d, channel: %p", dlc, channel);
DBG("deliver_data: dlc: %hu", dlc);
if (dlc < 1 || dlc > MAX_CHANNELS)
return;
@ -339,7 +339,7 @@ void g_at_mux_set_dlc_status(GAtMux *mux, guint8 dlc, int status)
{
GAtMuxChannel *channel;
DBG("Got status %d, for channel %d", status, channel);
DBG("Got status %d, for channel %hu", status, dlc);
if (dlc < 1 || dlc > MAX_CHANNELS)
return;