diff options
author | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2016-09-09 02:03:43 +0200 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2016-09-09 02:04:39 +0200 |
commit | 418ca58085d81f7c5fd7a625549399b3c03ee8e3 (patch) | |
tree | 8544b0fbe049a5267801d3dee90fe7a1d5844426 /include/osmocom/core/msgb.h | |
parent | e65315fb373602082b9289020ccc17f0c4b79935 (diff) |
fix error msg: msgb_put(): say "msgb_put", not "msgb_push"
Change-Id: I72f31ebad693f98eb088a99b83aeb10cf9acc29e
Diffstat (limited to 'include/osmocom/core/msgb.h')
-rw-r--r-- | include/osmocom/core/msgb.h | 2 |
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; |