From 50400cf02928ab94d3db43ae071cddb53151b1f2 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sat, 15 Nov 2014 19:35:47 -0500 Subject: [PATCH] Remove unused variables. --- core/logic/smn_filesystem.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/logic/smn_filesystem.cpp b/core/logic/smn_filesystem.cpp index e65766217..656302fc4 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);