Make randomNumberSeed read from /dev/urandom
[folly.git] / folly / FileUtil.cpp
index 6b153fd13b89e8f320e7cbc5f917a0fd68603d06..6ef48e85c5d97460da02914a626e64c383a24b73 100644 (file)
@@ -43,7 +43,7 @@ int closeNoInt(int fd) {
   // Interestingly enough, the Single Unix Specification says that the state
   // of the file descriptor is unspecified if close returns EINTR.  In that
   // case, the safe thing to do is also not to retry close() -- leaking a file
-  // descriptor is probably better than closing the wrong file.
+  // descriptor is definitely better than closing the wrong file.
   if (r == -1 && errno == EINTR) {
     r = 0;
   }