summaryrefslogtreecommitdiffstats
path: root/gatchat/gatmux.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-10-14 16:34:59 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-10-15 16:15:17 -0500
commit20dc22a6c40c4f594a7086b027bede758af89d88 (patch)
tree3d97a5dfa2ad4f82e0d846aebc31d0ec17bb2cc5 /gatchat/gatmux.c
parentd4d16176840600ba4ca4e8104e0e8b7d82de38fd (diff)
downloadofono-20dc22a6c40c4f594a7086b027bede758af89d88.tar.bz2
Fix: Cleanup debug formats
Diffstat (limited to 'gatchat/gatmux.c')
-rw-r--r--gatchat/gatmux.c4
1 files 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;