From 9c3b4678c321ac6370faa9d3c2643dace2eaabf0 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Fri, 18 Dec 2015 22:30:59 +1100 Subject: Give auxL_getref NOTUSED attribute --- src/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openssl.c b/src/openssl.c index e8ec0f4..93e069f 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -620,7 +620,7 @@ static void auxL_ref(lua_State *L, int index, auxref_t *ref) { *ref = luaL_ref(L, LUA_REGISTRYINDEX); } /* auxL_ref() */ -static auxtype_t auxL_getref(lua_State *L, auxref_t ref) { +NOTUSED static auxtype_t auxL_getref(lua_State *L, auxref_t ref) { if (ref == LUA_NOREF || ref == LUA_REFNIL) { lua_pushnil(L); } else { -- cgit v1.2.3-59-g8ed1b