From d4f3105d9a879f27baad6e43b8b3cb6fe2f0ef50 Mon Sep 17 00:00:00 2001 From: Erik Schilling Date: Sat, 27 Apr 2013 21:42:58 +0200 Subject: Use nullptr instead of NULL everywhere --- src/scripting/luascript.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/scripting/luascript.cpp') diff --git a/src/scripting/luascript.cpp b/src/scripting/luascript.cpp index f5fb6a4..2b9644d 100644 --- a/src/scripting/luascript.cpp +++ b/src/scripting/luascript.cpp @@ -155,7 +155,7 @@ bool LuaScript::resume() #if LUA_VERSION_NUM < 502 int result = lua_resume(mCurrentState, tmpNbArgs); #else - int result = lua_resume(mCurrentState, NULL, tmpNbArgs); + int result = lua_resume(mCurrentState, nullptr, tmpNbArgs); #endif if (result == 0) // Thread is done -- cgit