Index: content/common/plugin_list_posix.cc |
diff --git a/content/common/plugin_list_posix.cc b/content/common/plugin_list_posix.cc |
index 3e1353bef793a7203d1af347851224bdd7e56951..9f71ba6e0990ab84038b9b8c4b7cfb724c8c297e 100644 |
--- a/content/common/plugin_list_posix.cc |
+++ b/content/common/plugin_list_posix.cc |
@@ -173,7 +173,7 @@ bool ELFMatchesCurrentArchitecture(const base::FilePath& filename) { |
if (fd < 0) |
return false; |
bool ret = (fstat(fd, &stat_buf) >= 0 && S_ISREG(stat_buf.st_mode)); |
- if (HANDLE_EINTR(close(fd)) < 0) |
+ if (IGNORE_EINTR(close(fd)) < 0) |
return false; |
if (!ret) |
return false; |