Skip to content

Commit

Permalink
Merge pull request #164 from hyperledger/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
motxx committed Feb 16, 2017
2 parents a2f9e30 + d502ee4 commit 9f9890b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/infra/config/config_format.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ bool ConfigFormat::ensureFormat(json& actualConfig, json& formatConfig, const st

if (actualConfig.type() != formatConfig.type()) {
logger::warning("peer service with json")
<< "type must be " << formatConfig.type() << ", but is " << actualConfig.type();
<< "type must be " << static_cast<int>(formatConfig.type()) << ", but is " << static_cast<int>(actualConfig.type());
return false;
} else {

Expand Down

0 comments on commit 9f9890b

Please sign in to comment.