From da2f473386dd0c7156c102bbd84ded466ed59cf4 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 30 Sep 2008 17:07:25 +0200 Subject: [PATCH] awful.util: fix wrong variable Signed-off-by: Julien Danjou --- lib/awful/util.lua.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/awful/util.lua.in b/lib/awful/util.lua.in index 94fa4a93..4b9616a2 100644 --- a/lib/awful/util.lua.in +++ b/lib/awful/util.lua.in @@ -117,7 +117,7 @@ end -- @return A function if everything is alright, a string with the error -- otherwise. function checkfile(path) - local f, e = loadfile(s) + local f, e = loadfile(path) -- Return function if function, otherwise return error. if f then return f end return e