Skip to content

Commit

Permalink
mobile/gsm411: Fix printf format warning
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
  • Loading branch information
smunaut committed Jan 2, 2013
1 parent 9c1d7b1 commit 4df6653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/host/layer23/src/mobile/gsm411_sms.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ static int gsm411_rx_rp_ud(struct msgb *msg, struct gsm_trans *trans,

LOGP(DLSMS, LOGL_INFO, "DST(%u,%s)\n", src_len,
osmo_hexdump(src, src_len));
LOGP(DLSMS, LOGL_INFO, "TPDU(%u,%s)\n", msg->tail-msg->l4h,
LOGP(DLSMS, LOGL_INFO, "TPDU(%li,%s)\n", msg->tail-msg->l4h,
osmo_hexdump(msg->l4h, msg->tail-msg->l4h));

rc = gsm340_rx_tpdu(trans, msg);
Expand Down

0 comments on commit 4df6653

Please sign in to comment.