diff options
author | Will Dietz <w@wdtz.org> | 2018-03-06T23·34-0600 |
---|---|---|
committer | Will Dietz <w@wdtz.org> | 2018-03-06T23·44-0600 |
commit | 56253bb08fef60f4768ebb2ca013135b0dbf5df3 (patch) | |
tree | 1c30b2e3a882c86c871ff6bcfd6d2d1f4493b608 /src/libstore/build.cc | |
parent | 70dbac7491c372b514b4fd825f99a761803f40f5 (diff) |
rand() -> random(), since we use srandom().
rand() requires we call srand() instead, but might as well use random().
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 1d611ffbaba5..47a905c816cb 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1458,7 +1458,7 @@ void replaceValidPath(const Path & storePath, const Path tmpPath) tmpPath (the replacement), so we have to move it out of the way first. We'd better not be interrupted here, because if we're repairing (say) Glibc, we end up with a broken system. */ - Path oldPath = (format("%1%.old-%2%-%3%") % storePath % getpid() % rand()).str(); + Path oldPath = (format("%1%.old-%2%-%3%") % storePath % getpid() % random()).str(); if (pathExists(storePath)) rename(storePath.c_str(), oldPath.c_str()); if (rename(tmpPath.c_str(), storePath.c_str()) == -1) |