[MERGED] libosmocore[master]: fix error msg: msgb_put(): say "msgb_put", not "msgb_push"

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Harald Welte gerrit-no-reply at lists.osmocom.org
Fri Sep 9 06:29:19 UTC 2016


Harald Welte has submitted this change and it was merged.

Change subject: fix error msg: msgb_put(): say "msgb_put", not "msgb_push"
......................................................................


fix error msg: msgb_put(): say "msgb_put", not "msgb_push"

Change-Id: I72f31ebad693f98eb088a99b83aeb10cf9acc29e
---
M include/osmocom/core/msgb.h
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/include/osmocom/core/msgb.h b/include/osmocom/core/msgb.h
index b057caa..6f617e2 100644
--- a/include/osmocom/core/msgb.h
+++ b/include/osmocom/core/msgb.h
@@ -185,7 +185,7 @@
 {
 	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;

-- 
To view, visit https://gerrit.osmocom.org/840
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I72f31ebad693f98eb088a99b83aeb10cf9acc29e
Gerrit-PatchSet: 1
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder



More information about the gerrit-log mailing list