From b825605aecaa4be5c8b62de0f8dc12d0575850e0 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Thu, 26 Jun 2014 12:14:06 -0400 Subject: [PATCH] Fix for 32-bit (esp. win32 failing build). --- src/main/command_executor_portfolio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/command_executor_portfolio.cpp b/src/main/command_executor_portfolio.cpp index 964ce07c1..f5d030e26 100644 --- a/src/main/command_executor_portfolio.cpp +++ b/src/main/command_executor_portfolio.cpp @@ -304,7 +304,7 @@ bool CommandExecutorPortfolio::doCommandSingleton(Command* cmd) &d_channelsIn[0], &d_smts[0]); - uint64_t threadStackSize = d_options[options::threadStackSize]; + size_t threadStackSize = d_options[options::threadStackSize]; threadStackSize *= 1024 * 1024; pair portfolioReturn = -- 2.30.2