diff options
author | David Walter Seikel | 2014-08-10 04:22:02 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-08-10 04:22:02 +1000 |
commit | bcd511c023d57ee53eee00bc48f404f13ae5ee97 (patch) | |
tree | 6e8869f592e54f0ced30a6be45eeb15019c21e0a /src | |
parent | Thread all of compiling, or thread nothing. (diff) | |
download | SledjHamr-bcd511c023d57ee53eee00bc48f404f13ae5ee97.zip SledjHamr-bcd511c023d57ee53eee00bc48f404f13ae5ee97.tar.gz SledjHamr-bcd511c023d57ee53eee00bc48f404f13ae5ee97.tar.bz2 SledjHamr-bcd511c023d57ee53eee00bc48f404f13ae5ee97.tar.xz |
Bitch about not being able to load the compiled Lua.
Diffstat (limited to 'src')
-rw-r--r-- | src/libraries/Runnr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libraries/Runnr.c b/src/libraries/Runnr.c index e97fcee..3aaa570 100644 --- a/src/libraries/Runnr.c +++ b/src/libraries/Runnr.c | |||
@@ -241,7 +241,10 @@ static void _workerFunction(void *data, Ecore_Thread *thread) | |||
241 | 241 | ||
242 | err = luaL_loadfile(s->L, s->binName); | 242 | err = luaL_loadfile(s->L, s->binName); |
243 | if (err != 0) | 243 | if (err != 0) |
244 | { | ||
244 | s->status = RUNNR_FINISHED; | 245 | s->status = RUNNR_FINISHED; |
246 | printf("Error loading compiled Lua %s.", s->binName); | ||
247 | } | ||
245 | gettimeofday(&s->startTime, NULL); | 248 | gettimeofday(&s->startTime, NULL); |
246 | } | 249 | } |
247 | 250 | ||