aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/input
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-11-17 06:12:16 +0100
committerHarald Welte <laforge@gnumonks.org>2009-11-17 06:12:16 +0100
commit986c3d76db7795e565d0a7be5402d4bfe5e1ba93 (patch)
tree860b61b067d003268dc68d4734284ac19b11d0b5 /openbsc/src/input
parentd8cfc90e22e0645bda0c5f581c68181c3be9079b (diff)
fix some more compiler warnings
Diffstat (limited to 'openbsc/src/input')
-rw-r--r--openbsc/src/input/misdn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/input/misdn.c b/openbsc/src/input/misdn.c
index 82268e811..135cfad48 100644
--- a/openbsc/src/input/misdn.c
+++ b/openbsc/src/input/misdn.c
@@ -262,7 +262,7 @@ static int handle_tsX_write(struct bsc_fd *bfd)
ret = send(bfd->fd, tx_buf, sizeof(*hh) + BCHAN_TX_GRAN, 0);
if (ret < sizeof(*hh) + BCHAN_TX_GRAN)
- DEBUGP(DMIB, "send returns %d instead of %u\n", ret,
+ DEBUGP(DMIB, "send returns %d instead of %lu\n", ret,
sizeof(*hh) + BCHAN_TX_GRAN);
return ret;