From f180cc819f0ae6312dde6270314f85723e90f280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Mon, 8 Sep 2014 09:46:08 +0000 Subject: getting rid of compiler-warnings svn path=/trunk/externals/iem/iemmatrix/; revision=17345 --- src/mtx_qhull/list.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/mtx_qhull/list.c') diff --git a/src/mtx_qhull/list.c b/src/mtx_qhull/list.c index 754516f..bc19c50 100644 --- a/src/mtx_qhull/list.c +++ b/src/mtx_qhull/list.c @@ -170,6 +170,7 @@ list_t getSubList(const list_t list, const list_t indices) { getEntry(list,entry_getIndex(&e1)) ); } + return new_list; } list_t getSubListFromTo(const list_t list, const index_t start, @@ -257,7 +258,7 @@ void removeValueListFromList(list_t *list, const list_t excl_list) { void reverseList(list_t * const list) { index_t i,j; entry_t v; - const cnt = getLength(*list)/ 2; + const size_t cnt = getLength(*list)/ 2; if (cnt>0) for (i=0, j=getLength(*list)-1; i0) { print_entry(getEntry(list,0)); } -- cgit v1.2.1