From d1a9c28083fc3176bc6ae3908fcd038634337bf7 Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Sun, 6 Feb 2011 23:54:02 +0100 Subject: [PATCH] lua: Preventing gcc warning on vesa.c --- com32/lua/src/vesa.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/com32/lua/src/vesa.c b/com32/lua/src/vesa.c index 6f34820..f09faf3 100644 --- a/com32/lua/src/vesa.c +++ b/com32/lua/src/vesa.c @@ -117,6 +117,8 @@ static int vesa_getmodes(lua_State *L) static int vesa_setmode(lua_State *L) { + /* Preventing GCC to complain about unused L*/ + L=L; openconsole(&dev_rawcon_r, &dev_vesaserial_w); return 0; -- 2.7.4