From d53c2f4ebb010f92b7f6ecfa48fc6e233ab2eb3b Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 5 Jan 2014 21:01:05 +0000 Subject: [PATCH] Fix 32bit build --- source/backend/plugin/BridgePlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/backend/plugin/BridgePlugin.cpp b/source/backend/plugin/BridgePlugin.cpp index 79410fecc..5aacb4cc5 100644 --- a/source/backend/plugin/BridgePlugin.cpp +++ b/source/backend/plugin/BridgePlugin.cpp @@ -1352,7 +1352,7 @@ public: pData->hints = hints | PLUGIN_IS_BRIDGE; fInfo.category = static_cast(category); - fInfo.uniqueId = uniqueId; + fInfo.uniqueId = static_cast(uniqueId); fInfo.name = name; fInfo.label = label;