From 325a5231a50d015b376be1df93669b6983f23863 Mon Sep 17 00:00:00 2001 From: batrick Date: Sat, 29 Aug 2009 06:03:04 +0000 Subject: [PATCH] Fixed a compiler error I introduced in 15357. --- nse_main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nse_main.cc b/nse_main.cc index 5ef692b39..868a470eb 100644 --- a/nse_main.cc +++ b/nse_main.cc @@ -558,7 +558,7 @@ void nse_selectedbyname (lua_State *L) if (lua_isnil(L, -1)) { lua_pushboolean(L, 0); lua_replace(L, -2); - } else + } else { lua_call(L, 0, 1); } }