From 418ca58085d81f7c5fd7a625549399b3c03ee8e3 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Fri, 9 Sep 2016 02:03:43 +0200 Subject: fix error msg: msgb_put(): say "msgb_put", not "msgb_push" Change-Id: I72f31ebad693f98eb088a99b83aeb10cf9acc29e --- include/osmocom/core/msgb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3