From 20dc22a6c40c4f594a7086b027bede758af89d88 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 14 Oct 2009 16:34:59 -0500 Subject: [PATCH] Fix: Cleanup debug formats --- gatchat/gatmux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gatchat/gatmux.c b/gatchat/gatmux.c index 96576de5..0fe3ecb3 100644 --- a/gatchat/gatmux.c +++ b/gatchat/gatmux.c @@ -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;