Index: runtime/bin/crypto_android.cc |
diff --git a/runtime/bin/crypto_android.cc b/runtime/bin/crypto_android.cc |
index 7a970d0bfb61d6c1a269494ae5ab43660472e3f4..b83a71b812bbd506942ebcc809af38ffe607667c 100644 |
--- a/runtime/bin/crypto_android.cc |
+++ b/runtime/bin/crypto_android.cc |
@@ -17,8 +17,8 @@ namespace bin { |
bool Crypto::GetRandomBytes(intptr_t count, uint8_t* buffer) { |
ThreadSignalBlocker signal_blocker(SIGPROF); |
- intptr_t fd = TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER( |
- open("/dev/urandom", O_RDONLY)); |
+ intptr_t fd = |
+ TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(open("/dev/urandom", O_RDONLY)); |
if (fd < 0) { |
return false; |
} |