Skip to content

Commit

Permalink
LuaFAR: suppress compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
shmuz committed Mar 15, 2017
1 parent b93b90f commit e4f5f21
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/luamacro/_globalinfo.lua
@@ -1,6 +1,6 @@
function export.GetGlobalInfo()
return {
Version = { 1, 0, 0, 597 },
Version = { 1, 0, 0, 598 },
MinFarVersion = { 3, 0, 0, 4829 },
Guid = win.Uuid("4EBBEFC8-2084-4B7F-94C0-692CE136894D"),
Title = "LuaMacro",
Expand Down
6 changes: 5 additions & 1 deletion plugins/luamacro/changelog
@@ -1,4 +1,8 @@
shmuel 13.02.2017 01:39:25 +0200 - build 597
shmuel 15.03.2017 16:18:38 +0200 - build 598

1. LuaFAR: suppress compiler warning.

shmuel 13.02.2017 01:39:25 +0200 - build 597

1. LuaFAR: refactoring.

Expand Down
3 changes: 2 additions & 1 deletion plugins/luamacro/luafar/service.c
Expand Up @@ -1567,7 +1567,8 @@ static int far_Menu(lua_State *L)
const wchar_t *Title = L"Menu", *Bottom = NULL, *HelpTopic = NULL;
intptr_t SelectIndex = 0, ItemsNumber, ret;
int store = 0, i;
intptr_t BreakCode, *pBreakCode, NumBreakCodes=0;
intptr_t BreakCode, *pBreakCode;
int NumBreakCodes = 0;
const GUID* MenuGuid = NULL;
struct FarMenuItem *Items, *pItem;
struct FarKey *pBreakKeys;
Expand Down
2 changes: 1 addition & 1 deletion plugins/luamacro/luamacro.rc
@@ -1,6 +1,6 @@
#include <farversion.hpp>

#define PLUGIN_BUILD 597
#define PLUGIN_BUILD 598
#define PLUGIN_DESC "Lua Macros for Far Manager"
#define PLUGIN_NAME "LuaMacro"
#define PLUGIN_FILENAME "luamacro.dll"
Expand Down

0 comments on commit e4f5f21

Please sign in to comment.