aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-09-09 02:03:43 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-09-09 02:04:39 +0200
commit418ca58085d81f7c5fd7a625549399b3c03ee8e3 (patch)
tree8544b0fbe049a5267801d3dee90fe7a1d5844426 /include/osmocom
parente65315fb373602082b9289020ccc17f0c4b79935 (diff)
fix error msg: msgb_put(): say "msgb_put", not "msgb_push"
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/core/msgb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/core/msgb.h b/include/osmocom/core/msgb.h
index b057caa0..6f617e28 100644
--- a/include/osmocom/core/msgb.h
+++ b/include/osmocom/core/msgb.h
@@ -185,7 +185,7 @@ static inline unsigned char *msgb_put(struct msgb *msgb, unsigned int len)
{
unsigned char *tmp = msgb->tail;
if (msgb_tailroom(msgb) < (int) len)
- MSGB_ABORT(msgb, "Not enough tailroom msgb_push (%u < %u)\n",
+ MSGB_ABORT(msgb, "Not enough tailroom msgb_put (%u < %u)\n",
msgb_tailroom(msgb), len);
msgb->tail += len;
msgb->len += len;