tests/test-ranap.c: Fix wrong printf format

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
diff --git a/src/tests/test-ranap.c b/src/tests/test-ranap.c
index 05be874..423f992 100644
--- a/src/tests/test-ranap.c
+++ b/src/tests/test-ranap.c
@@ -51,7 +51,7 @@
 		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 @@
 
 	/* 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);