From d06f71b3cd0273277f3dfeb109aa026537b2c565 Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Sat, 23 Jun 2012 20:38:20 +0800 Subject: [PATCH] fix naming for fake events device --- input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.c b/input.c index 6dce14f50..86e53ca3f 100644 --- a/input.c +++ b/input.c @@ -58,7 +58,7 @@ static int openInputDevice(lua_State *L) { return luaL_error(L, "no free slot for new input device <%s>", inputdevice); } - if(!strcmp("slider",inputdevice)) { + if(!strcmp("fake_events",inputdevice)) { /* special case: the power slider */ int pipefd[2]; int childpid;