aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/gprs_gsup_messages.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-04-23 11:55:23 -0400
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-04-23 17:01:09 -0400
commit8e6ecc96677a4353768296ce79d9fc52ad6ca6e1 (patch)
tree3ad9ea46c291b39c5c5a88a9d2d19ef9b7e89e90 /openbsc/src/gprs/gprs_gsup_messages.c
parentadc17268fc40a63ebaf2bbbdf3109fc66638c9ae (diff)
misc: Fix warnings about size of size_t in printf
Fixes warnings like: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long int' [-Wformat]
Diffstat (limited to 'openbsc/src/gprs/gprs_gsup_messages.c')
-rw-r--r--openbsc/src/gprs/gprs_gsup_messages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gprs_gsup_messages.c b/openbsc/src/gprs/gprs_gsup_messages.c
index 8996fe2bf..9d9b6be20 100644
--- a/openbsc/src/gprs/gprs_gsup_messages.c
+++ b/openbsc/src/gprs/gprs_gsup_messages.c
@@ -153,7 +153,7 @@ static int decode_auth_info(uint8_t *data, size_t data_len,
parse_error:
LOGP(DGPRS, LOGL_ERROR,
- "GSUP IE type %d, length %d invalid in PDP info\n", iei, value_len);
+ "GSUP IE type %d, length %zu invalid in PDP info\n", iei, value_len);
return -1;
}