Chromium Code Reviews| Index: runtime/platform/globals.h |
| =================================================================== |
| --- runtime/platform/globals.h (revision 32732) |
| +++ runtime/platform/globals.h (working copy) |
| @@ -481,7 +481,7 @@ |
| ({ intptr_t __result; \ |
| do { \ |
| __result = (expression); \ |
| - } while (__result == -1L && errno == EINTR); \ |
| + } while ((__result == -1L) && (errno == EINTR)); \ |
| __result; }) |
| #endif // !defined(TEMP_FAILURE_RETRY) |