aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-03-30 15:25:02 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-03-30 15:25:02 +0200
commitb6e1a40c9c3e9ac1bade68b4b3c9e3c4665f79dc (patch)
treec035dcbc52072607235e4e0473c624bb02b32e68 /openbsc
parent82ae7169a41677774e67ac56f7c738b8fa067a9c (diff)
[misnd] Use the size_t modifier when printing the size.
Diffstat (limited to 'openbsc')
-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 56930d498..83b01f2ca 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 %lu\n", ret,
+ DEBUGP(DMIB, "send returns %d instead of %zu\n", ret,
sizeof(*hh) + BCHAN_TX_GRAN);
return ret;