Skip to content

Commit

Permalink
Fix call of oms_setTolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
lochel committed Jan 18, 2019
1 parent 9a352e4 commit 0bae201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMEdit/OMEditGUI/OMS/OMSProxy.cpp
Expand Up @@ -1373,7 +1373,7 @@ bool OMSProxy::setTolerance(QString cref, double tolerance)
QStringList args;
args << "\"" + cref + "\"" << QString::number(tolerance);
LOG_COMMAND(command, args);
oms_status_enu_t status = oms_setTolerance(cref.toStdString().c_str(), tolerance);
oms_status_enu_t status = oms_setTolerance(cref.toStdString().c_str(), tolerance, tolerance);
logResponse(command, status, &commandTime);
return statusToBool(status);
}
Expand Down

0 comments on commit 0bae201

Please sign in to comment.