aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/lua/packet-lua.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-01-29 23:48:43 +0000
committerJörg Mayer <jmayer@loplof.de>2006-01-29 23:48:43 +0000
commit133a10823e3f703086b416c9d273052607467a47 (patch)
treed49ee6033c4f6bd272be964d23c1dbc878541cad /plugins/lua/packet-lua.h
parent5340742d75a6c69af5054f820d199180917dcb90 (diff)
Warning fixes: no ';' at the end of functions.
svn path=/trunk/; revision=17124
Diffstat (limited to 'plugins/lua/packet-lua.h')
-rw-r--r--plugins/lua/packet-lua.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/lua/packet-lua.h b/plugins/lua/packet-lua.h
index 508f79c3ec..d1d96ab475 100644
--- a/plugins/lua/packet-lua.h
+++ b/plugins/lua/packet-lua.h
@@ -163,6 +163,8 @@ typedef struct _eth_tap {
* checkXxx(L,idx) gets a Xxx from an index after calling check_code (No Lua Error if it fails)
* pushXxx(L,xxx) pushes an Xxx into the stack
* isXxx(L,idx) tests whether we have an Xxx at idx
+ *
+ * LUA_CLASS_DEFINE must be used without trailing ';'
*/
#define LUA_CLASS_DEFINE(C,CN,check_code) \
C to##C(lua_State* L, int index) { \