From 580fa3a52dcbb9e2a2d8c518ba472d05a1152250 Mon Sep 17 00:00:00 2001 From: Cesare Tirabassi Date: Wed, 29 Jul 2009 18:04:34 +0200 Subject: [PATCH] correct typo in error message --- src/llua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 1.7.9.5