# HG changeset patch # User Matthew Wild # Date 1263154908 0 # Node ID 1df57426263aa6bbee2006bb53de33b7ec5ccea7 # Parent 7f22d9c384e1828c2712e4621e7c3d21cd938319 util.pposix: Fix return type of lc_abort to shush compiler warning diff -r 7f22d9c384e1 -r 1df57426263a util-src/pposix.c --- a/util-src/pposix.c Fri Jan 01 03:32:26 2010 +0000 +++ b/util-src/pposix.c Sun Jan 10 20:21:48 2010 +0000 @@ -463,9 +463,10 @@ return 3; } -void lc_abort(lua_State* L) +int lc_abort(lua_State* L) { abort(); + return 0; } /* Register functions */