From: Cesare Tirabassi Date: Wed, 29 Jul 2009 16:04:34 +0000 (+0200) Subject: correct typo in error message X-Git-Url: http://vcs.maemo.org/git/?a=commitdiff_plain;h=580fa3a52dcbb9e2a2d8c518ba472d05a1152250;p=monky correct typo in error message --- diff --git a/src/llua.c b/src/llua.c index 5113d3d..47dc120 100644 --- a/src/llua.c +++ b/src/llua.c @@ -74,7 +74,7 @@ static int llua_conky_set_update_interval(lua_State *L) lua_error(L); } if (!lua_isnumber(L, 1)) { - lua_pushstring(L, "incorrect argument (expecting a string)"); + lua_pushstring(L, "incorrect argument (expecting a number)"); lua_error(L); } value = lua_tonumber(L, 1);