From ddb7586e9d9f4ca4dec3fedae44ecf0ec8231e96 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 14 May 2020 02:01:07 +0700 Subject: 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 --- src/gsm/gsm0502.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3