1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-24 21:32:47 -05:00

Fixed --calibrate-algo-time command line parsing

This commit is contained in:
MoneroOcean
2018-08-04 10:54:14 +02:00
parent 0bc9d775c6
commit f340ea69f2

View File

@@ -297,6 +297,9 @@ bool xmrig::CommonConfig::parseString(int key, const char *arg)
# endif
return parseUint64(key, strtol(arg, nullptr, 10));
case CalibrateAlgoTimeKey: /* --calibrate-algo-time */
return parseUint64(key, strtol(arg, nullptr, 10));
default:
break;
}