Skip to content
Snippets Groups Projects
Commit 51947319 authored by LJ Sonic's avatar LJ Sonic
Browse files

Fix two compiler warnings

parent 9658ef2c
No related branches found
No related tags found
2 merge requests!985Shaders next merge,!727Support for Lua's I/O library
...@@ -268,8 +268,8 @@ static int io_openlocal (lua_State *L) { ...@@ -268,8 +268,8 @@ static int io_openlocal (lua_State *L) {
void Got_LuaFile(UINT8 **cp, INT32 playernum) void Got_LuaFile(UINT8 **cp, INT32 playernum)
{ {
FILE **pf; FILE **pf = NULL;
boolean success = READUINT8(*cp); // The first (and only) byte indicates whether the file could be opened UINT8 success = READUINT8(*cp); // The first (and only) byte indicates whether the file could be opened
if (playernum != serverplayer) if (playernum != serverplayer)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment