summaryrefslogtreecommitdiff
path: root/plugins/MenuItemEx/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MenuItemEx/src/main.cpp')
-rw-r--r--plugins/MenuItemEx/src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MenuItemEx/src/main.cpp b/plugins/MenuItemEx/src/main.cpp
index 34dd3e21d9..36070f45b1 100644
--- a/plugins/MenuItemEx/src/main.cpp
+++ b/plugins/MenuItemEx/src/main.cpp
@@ -95,7 +95,7 @@ CMPlugin::CMPlugin() :
struct ModSetLinkLinkItem
{ // code from dbe++ plugin by Bio
char *name;
- BYTE *next; //struct ModSetLinkLinkItem
+ uint8_t *next; //struct ModSetLinkLinkItem
};
struct ModuleSettingLL
@@ -122,7 +122,7 @@ static int enumModulesSettingsProc(const char *szName, void *lParam)
else {
struct ModSetLinkLinkItem *item = (struct ModSetLinkLinkItem *)malloc(sizeof(struct ModSetLinkLinkItem));
if (!item) return 1;
- msll->last->next = (BYTE*)item;
+ msll->last->next = (uint8_t*)item;
msll->last = (struct ModSetLinkLinkItem *)item;
item->name = _strdup(szName);
item->next = nullptr;