summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/Table.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/Table.c b/src/util/Table.c
index a11ae50d..0391457e 100644
--- a/src/util/Table.c
+++ b/src/util/Table.c
@@ -491,6 +491,8 @@ int handle;
/* we should never get to here! */
assert(false);
abort(); /* internal error (core dump) */
+/* prevent compiler warning 'function should return a value' */
+return(0);
}
}
@@ -2019,6 +2021,7 @@ int ihandle;
/* we should never get to here! */
assert(false);
abort(); /* internal error (core dump) */
+/* prevent compiler warning 'function should return a value' */
}
}