Remove unused variables.

This commit is contained in:
Nicholas Hastings 2014-11-15 19:35:47 -05:00
parent b85f4d776e
commit 50400cf029

View File

@ -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);