Merge branch 'NetHack-3.7' of https://rodney.nethack.org:20040/git/NHsource into NetHack-3.7

This commit is contained in:
nhmall
2020-02-13 18:19:35 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ lua_State *L;
{
struct selectionvar *tmp = selection_new();
struct selectionvar
*sel = (struct selectionvar *) lua_newuserdata(L, sizeof sel);
*sel = (struct selectionvar *) lua_newuserdata(L, sizeof(struct selectionvar));
luaL_getmetatable(L, "selection");
lua_setmetatable(L, -2);

View File

@@ -3581,7 +3581,7 @@ lua_State *L UNUSED;
struct selectionvar *
selection_new()
{
struct selectionvar *tmps = (struct selectionvar *) alloc(sizeof tmps);
struct selectionvar *tmps = (struct selectionvar *) alloc(sizeof(struct selectionvar));
tmps->wid = COLNO;
tmps->hei = ROWNO;