We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd5d153 commit 5dd21d1Copy full SHA for 5dd21d1
1 file changed
src/build-remote/build-remote.cc
@@ -139,8 +139,8 @@ int main (int argc, char * * argv)
139
auto store = openStore();
140
141
auto localSystem = argv[1];
142
- settings.maxSilentTime = strtoull(argv[2], NULL, 10);
143
- settings.buildTimeout = strtoull(argv[3], NULL, 10);
+ settings.maxSilentTime = stoull(string(argv[2]));
+ settings.buildTimeout = stoull(string(argv[3]));
144
145
currentLoad = getEnv("NIX_CURRENT_LOAD", "/run/nix/current-load");
146
0 commit comments