summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anylike.org>2009-12-26 16:35:56 +0000
committerChristian Pointner <equinox@anylike.org>2009-12-26 16:35:56 +0000
commit41a7861a25102e0bfdedd62f40b105589449295d (patch)
tree32bb4e8a875ba768673729738d2d37263d2f81eb
parentmoved options table functions to options.c (diff)
removed useless ; in main_loop.lua
-rw-r--r--src/main_loop.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main_loop.lua b/src/main_loop.lua
index 82e3148..785f7b2 100644
--- a/src/main_loop.lua
+++ b/src/main_loop.lua
@@ -24,9 +24,9 @@
--
function main_loop(opt)
- log.print("NOTICE", "main_loop started");
+ log.print("NOTICE", "main_loop started")
-- add main loop
- return 0; -- =0 -> OK, <0 -> error, >0 -> signal
+ return 0 -- =0 -> OK, <0 -> error, >0 -> signal
end