diff --git a/core/logic/smn_filesystem.cpp b/core/logic/smn_filesystem.cpp index e6576621..656302fc 100644 --- a/core/logic/smn_filesystem.cpp +++ b/core/logic/smn_filesystem.cpp @@ -459,7 +459,6 @@ static cell_t sm_ReadDirEntry(IPluginContext *pContext, const cell_t *params) static cell_t sm_OpenFile(IPluginContext *pContext, const cell_t *params) { - int err; char *name, *mode; pContext->LocalToString(params[1], &name); pContext->LocalToString(params[2], &mode); @@ -489,7 +488,6 @@ static cell_t sm_OpenFile(IPluginContext *pContext, const cell_t *params) static cell_t sm_DeleteFile(IPluginContext *pContext, const cell_t *params) { - int err; char *name; pContext->LocalToString(params[1], &name);