msgb: Avoid warnings that the string might contain %s or such..
[osmocom-bb.git] / include / osmocore / msgb.h
index fb4a701..962ba4e 100644 (file)
@@ -65,7 +65,7 @@ extern void msgb_reset(struct msgb *m);
 #include <stdlib.h>
 static inline void msgb_abort(struct msgb *msg, const char *text)
 {
-       fprintf(stderr, text);
+       fprintf(stderr, "%s", text);
        abort();
 }
 #endif