diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-11-09T15·42+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-11-09T15·42+0100 |
commit | 10dcee99ed62a775c05f34aa70449945d537e1a2 (patch) | |
tree | 4b60acb53162cf4145e9a8085f328b3101399443 /src/libstore/local-store.cc | |
parent | 4c9e3fa6412f736ce422f8deb0ba825999b66b0a (diff) |
Remove the quickExit function
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index b69eec614aa4..bcf367d654b8 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -981,7 +981,7 @@ void LocalStore::startSubstituter(const Path & substituter, RunningSubstituter & } catch (std::exception & e) { std::cerr << "error: " << e.what() << std::endl; } - quickExit(1); + _exit(1); } /* Parent. */ |