1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

Fix build

This commit is contained in:
Eelco Dolstra 2017-04-25 16:55:03 +02:00
parent 0e49f94120
commit 2dff9556a4
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
2 changed files with 7 additions and 5 deletions

View file

@ -1,3 +1,5 @@
#include <nix/config.h>
#include <iostream>
#include <cstdlib>
@ -291,7 +293,7 @@ static int runProgram(const string & program, const Strings & args)
_exit(1);
}
return pid.wait(true);
return pid.wait();
}