From: Erwan Velu Date: Sun, 6 Feb 2011 22:54:02 +0000 (+0100) Subject: lua: Preventing gcc warning on vesa.c X-Git-Tag: syslinux-4.04-pre9~1^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d1a9c28083fc3176bc6ae3908fcd038634337bf7;p=profile%2Fivi%2Fsyslinux.git lua: Preventing gcc warning on vesa.c --- 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;