aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-05-14 02:01:07 +0700
committerlaforge <laforge@osmocom.org>2020-05-14 09:12:46 +0000
commitddb7586e9d9f4ca4dec3fedae44ecf0ec8231e96 (patch)
treec174e8f6be2bb130559a0bc1de37f1a0b9906d0e
parent2ac8f91ea6212f089a0aa46102c5b803c9e8b6ae (diff)
libosmogsm: cosmetic: add spaces before and after PRIu32
As was pointed out by pespin, some compilers may not like the lack of spaces around the format macro constants. Change-Id: I4b6517989030c8e3f6a1bf16c43044e4e9137f40
-rw-r--r--src/gsm/gsm0502.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gsm/gsm0502.c b/src/gsm/gsm0502.c
index 1a71e617..5c5aa120 100644
--- a/src/gsm/gsm0502.c
+++ b/src/gsm/gsm0502.c
@@ -193,7 +193,7 @@ uint32_t gsm0502_fn_remap(uint32_t fn, enum gsm0502_fn_remap_channel channel)
}
if (sub == -1) {
- LOGP(DLGLOBAL, LOGL_ERROR, "could not remap frame number!, fn=%"PRIu32"\n", fn);
+ LOGP(DLGLOBAL, LOGL_ERROR, "could not remap frame number!, fn=%" PRIu32 "\n", fn);
return fn;
}