# HG changeset patch # User Matthew Wild # Date 1263154908 0 # Node ID b1ba2473fd91fdf6c8ecc867d108823f27ee91c3 # Parent ccc71b5d2e0187dfb03492d02efbcbb7aa561606 util.pposix: Fix return type of lc_abort to shush compiler warning diff -r ccc71b5d2e01 -r b1ba2473fd91 util-src/pposix.c --- a/util-src/pposix.c Sun Jan 10 17:35:37 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 */