summaryrefslogtreecommitdiffstats
path: root/include/osmocore/msgb.h
diff options
context:
space:
mode:
authorHarald Welte2010-11-05 07:50:40 +0100
committerHarald Welte2010-11-05 07:52:22 +0100
commitbe6cb17228e967a9dbd05e70e63145efaa9f6460 (patch)
tree21c94d19fb5513fb9885423cc1f1d914072c801b /include/osmocore/msgb.h
parentgenerate backtrace in msgb_abort() (diff)
downloadlibosmocore-be6cb17228e967a9dbd05e70e63145efaa9f6460.tar.gz
libosmocore-be6cb17228e967a9dbd05e70e63145efaa9f6460.tar.xz
libosmocore-be6cb17228e967a9dbd05e70e63145efaa9f6460.zip
msgb_abort(): better formatting
Diffstat (limited to 'include/osmocore/msgb.h')
-rw-r--r--include/osmocore/msgb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocore/msgb.h b/include/osmocore/msgb.h
index 68f0de6..5a88ac6 100644
--- a/include/osmocore/msgb.h
+++ b/include/osmocore/msgb.h
@@ -65,7 +65,7 @@ extern void msgb_reset(struct msgb *m);
#include <osmocore/gsm_utils.h>
#define MSGB_ABORT(msg, fmt, args ...) do { \
generate_backtrace(); \
- osmo_panic("msgb(%p)" fmt, ## args); \
+ osmo_panic("msgb(%p): " fmt, ## args); \
} while(0)
#else
#define MSGB_ABORT(msg, fmt, args ...)