From ca74126d5413505a1eb2a7cc23be17fca4b1492f Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 20 Mar 2020 20:22:03 +0100 Subject: [PATCH] tests/test-ranap.c: Fix wrong printf format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Caught by compiler: test-ranap.c:54:30: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 2 has type ‘RANAP_MaxBitrate_t’ {aka ‘long int’} [-Wformat=] test-ranap.c:78:30: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 2 has type ‘RANAP_CauseMisc_t’ {aka ‘long int’} [-Wformat=] Change-Id: Icc4e81beaa35e13aea3adfed983016c78b730061 --- src/tests/test-ranap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/test-ranap.c b/src/tests/test-ranap.c index 05be8747..423f9927 100644 --- a/src/tests/test-ranap.c +++ b/src/tests/test-ranap.c @@ -51,7 +51,7 @@ static void test_aper_int(uint32_t inp) fprintf(stderr, "Failed\n"); return; } - printf("Encoded MaxBitRate %u to %s\n", mbr, osmo_hexdump(buf, rv.encoded/8)); + printf("Encoded MaxBitRate %ld to %s\n", mbr, osmo_hexdump(buf, rv.encoded/8)); } static void test_aper_causemisc(uint32_t inp, uint8_t exp_enc) @@ -75,7 +75,7 @@ static void test_aper_causemisc(uint32_t inp, uint8_t exp_enc) /* test re-decoding */ aper_decode(NULL, &asn_DEF_RANAP_Cause, &c_dec, buf, 1, 0, 0); - printf("Decoded Cause Misc=%u\n", c_dec->choice.misc); + printf("Decoded Cause Misc=%ld\n", c_dec->choice.misc); OSMO_ASSERT(c_dec->present == RANAP_Cause_PR_misc); OSMO_ASSERT(c_dec->choice.misc == inp); ASN_STRUCT_FREE(asn_DEF_RANAP_Cause, c_dec);