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
This commit is contained in:
Vadim Yanitskiy 2020-05-14 02:01:07 +07:00 committed by laforge
parent 2ac8f91ea6
commit ddb7586e9d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}