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