diff options
| author | Jay Sorg <jay.sorg@gmail.com> | 2014-07-28 00:17:42 -0700 |
|---|---|---|
| committer | Jay Sorg <jay.sorg@gmail.com> | 2014-07-28 00:17:42 -0700 |
| commit | f49ca27ea79712c3654d29fbd6c8b079675df6fb (patch) | |
| tree | 4f5d942fba817e87d7f8386ad52fbc1cf53fe1dd | |
| parent | b7d15c55eda57bf20c60b29fae293f8892f56cec (diff) | |
| download | xrdp-proprietary-f49ca27ea79712c3654d29fbd6c8b079675df6fb.tar.gz xrdp-proprietary-f49ca27ea79712c3654d29fbd6c8b079675df6fb.zip | |
common: fix for list16_insert_item
| -rw-r--r-- | common/list16.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
