Skip to content

Commit

Permalink
Merge pull request #766 from Roboto12/patch-1
Browse files Browse the repository at this point in the history
Update Asm.cpp
  • Loading branch information
xmrig committed Sep 30, 2018
2 parents fa38d97 + fbba3d1 commit ae25c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/Asm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ xmrig::Assembly xmrig::Asm::parse(const char *assembly, Assembly defaultValue)
xmrig::Assembly xmrig::Asm::parse(const rapidjson::Value &value, Assembly defaultValue)
{
if (value.IsBool()) {
return parse(value.IsBool());
return parse(value.GetBool());
}

if (value.IsString()) {
Expand Down

0 comments on commit ae25c01

Please sign in to comment.