Browse Source

Fix 32bit build

tags/1.9.4
falkTX 12 years ago
parent
commit
d53c2f4ebb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/backend/plugin/BridgePlugin.cpp

+ 1
- 1
source/backend/plugin/BridgePlugin.cpp View File

@@ -1352,7 +1352,7 @@ public:
pData->hints = hints | PLUGIN_IS_BRIDGE;

fInfo.category = static_cast<PluginCategory>(category);
fInfo.uniqueId = uniqueId;
fInfo.uniqueId = static_cast<long int>(uniqueId);

fInfo.name = name;
fInfo.label = label;


Loading…
Cancel
Save