From 0bf93a6482e620b773fe3eea926c70c15d95b962 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Tue, 20 Feb 2018 22:06:56 +0100 Subject: gsm0408_test: cosmetically re-order MCC to come before MNC For consistency in human readability, MCC simply should come first, always. Change-Id: Idb86a7088fac4d8a8c41190ab46f9801635f4eee --- tests/gsm0408/gsm0408_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/gsm0408/gsm0408_test.c') diff --git a/tests/gsm0408/gsm0408_test.c b/tests/gsm0408/gsm0408_test.c index 8e6cf2f2..87f8dded 100644 --- a/tests/gsm0408/gsm0408_test.c +++ b/tests/gsm0408/gsm0408_test.c @@ -132,7 +132,7 @@ static int test_bearer_cap() static inline void dump_ra(const struct gprs_ra_id *raid) { - printf("RA: MNC=%u, MCC=%u, LAC=%u, RAC=%u\n", raid->mnc, raid->mcc, raid->lac, raid->rac); + printf("RA: MCC=%u, MNC=%u, LAC=%u, RAC=%u\n", raid->mcc, raid->mnc, raid->lac, raid->rac); } static inline void check_ra(const struct gprs_ra_id *raid) @@ -160,14 +160,14 @@ static inline void check_ra(const struct gprs_ra_id *raid) static struct gprs_ra_id test_ra_cap_items[] = { { - .mnc = 121, .mcc = 77, + .mnc = 121, .lac = 666, .rac = 5, }, { - .mnc = 98, .mcc = 84, + .mnc = 98, .lac = 11, .rac = 89, }, -- cgit v1.2.3