From: Denis Kenzior Date: Wed, 14 Oct 2009 21:34:59 +0000 (-0500) Subject: Fix: Cleanup debug formats X-Git-Tag: 0.8~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20dc22a6c40c4f594a7086b027bede758af89d88;p=platform%2Fupstream%2Fofono.git Fix: Cleanup debug formats --- diff --git a/gatchat/gatmux.c b/gatchat/gatmux.c index 96576de..0fe3ecb 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;