summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2011-03-15 17:02:54 -0700
committerSam Roberts <vieuxtech@gmail.com>2011-03-15 17:02:54 -0700
commit1eb50434f1fec747f4012933cbe1c6f702cc2212 (patch)
tree1f9b692a8d1ed2c94c8b9889879f4934656a84ac
parentcd02eec853affcacebf0501f166621d82584e6bc (diff)
downloadlibnet-1eb50434f1fec747f4012933cbe1c6f702cc2212.tar.gz
Fix assert() that refers to the old name for a global.
-rw-r--r--lua/nfct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nfct.c b/lua/nfct.c
index 334ce94..a0d3bc0 100644
--- a/lua/nfct.c
+++ b/lua/nfct.c
@@ -1178,7 +1178,7 @@ LUALIB_API int luaopen_nfct (lua_State *L)
/* These tables are long, and must agree in length or chaos will ensue,
* chaos now is better than chaos later.
*/
- assert(sizeof(attr_opts) == sizeof(attr_vals));
+ assert(sizeof(ATTR_opts) == sizeof(ATTR_vals));
luaL_register(L, "nfct", nfct);