summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anylike.org>2009-12-27 14:56:25 +0000
committerChristian Pointner <equinox@anylike.org>2009-12-27 14:56:25 +0000
commit8a41a51c240b2bc329a0b2e1e9178f2168c17e17 (patch)
tree4f5fb000b0aa66994ef51d67c57421971e61d36b
parentimplemented log.printf as replacement for log.print (diff)
cleanup
-rw-r--r--src/l_log.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/l_log.c b/src/l_log.c
index 9fd8988..7cac3b5 100644
--- a/src/l_log.c
+++ b/src/l_log.c
@@ -61,7 +61,6 @@ static int l_log_add_target(lua_State *L)
return 1;
}
-/* void log_printf(log_prio_t prio, const char* fmt, ...); */
static int l_log_printf(lua_State *L)
{
int numargs = lua_gettop(L);
@@ -100,9 +99,6 @@ static int l_log_printf(lua_State *L)
return 0;
}
-
-/* void log_print_hex_dump(log_prio_t prio, const u_int8_t* buf, u_int32_t len); */
-
static const struct luaL_reg log_funcs [] = {
{ "init", l_log_init },
{ "close", l_log_close },