Skip to content

Commit

Permalink
Merge pull request microsoft#16 from pannous/master
Browse files Browse the repository at this point in the history
Fixed Source/Math/ConvolutionEngine.cpp error: format ‘%d’ expects argument of type ‘int’
  • Loading branch information
chrisbasoglu committed Jan 26, 2016
2 parents 53de59c + 7c28033 commit 7b27d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Math/ConvolutionEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ std::unique_ptr<ConvolutionEngineFactory<ElemType>> ConvolutionEngineFactory<Ele
return std::make_unique<DefaultConvolutionEngineFactory<ElemType>>();
}

RuntimeError("Not supported convolution engine type: %d.", engType);
RuntimeError("Not supported convolution engine type: %d.", (int)engType);
}

template class ConvolutionEngineFactory<float>;
Expand Down

0 comments on commit 7b27d56

Please sign in to comment.