Skip to content

Commit

Permalink
Fix assert() that refers to the old name for a global.
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-github committed Mar 16, 2011
1 parent cd02eec commit 1eb5043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/nfct.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 1eb5043

Please sign in to comment.