Index: content/common/plugin_list_posix.cc |
diff --git a/content/common/plugin_list_posix.cc b/content/common/plugin_list_posix.cc |
index a5d7fac5bbe2c7766369f9b6374259df813b8f3c..abc74bac21ee57b0e9ee006c712372da28bed70d 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; |