From f49ca27ea79712c3654d29fbd6c8b079675df6fb Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Mon, 28 Jul 2014 00:17:42 -0700 Subject: [PATCH] common: fix for list16_insert_item --- common/list16.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/list16.c b/common/list16.c index caeb9cdb..5e5c3d7f 100644 --- a/common/list16.c +++ b/common/list16.c @@ -157,7 +157,7 @@ list16_insert_item(struct list16 *self, int index, tui16 item) if (index == self->count) { - list_add_item(self, item); + list16_add_item(self, item); return; }