summaryrefslogtreecommitdiff
path: root/libcpp/files.c
diff options
context:
space:
mode:
authormpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4>2014-05-21 18:54:12 +0000
committermpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4>2014-05-21 18:54:12 +0000
commit0ac81b0ef723e7d62ebca7c0778cab26a66290b1 (patch)
treedc22c597e050c45d675564d83c4baf8498fa4531 /libcpp/files.c
parent5402533b93a68dbfef2a5e91efb42dacd1725aa5 (diff)
downloadgcc-0ac81b0ef723e7d62ebca7c0778cab26a66290b1.tar.gz
PR c/61212
* files.c (find_file_in_dir): Add parens around &&. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210722 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/files.c')
-rw-r--r--libcpp/files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/files.c b/libcpp/files.c
index ad68682e99e..91bc9dd0782 100644
--- a/libcpp/files.c
+++ b/libcpp/files.c
@@ -390,7 +390,7 @@ find_file_in_dir (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch)
/* We try to canonicalize system headers. For DOS based file
* system, we always try to shorten non-system headers, as DOS
* has a tighter constraint on max path length. */
- if (CPP_OPTION (pfile, canonical_system_headers) && file->dir->sysp
+ if ((CPP_OPTION (pfile, canonical_system_headers) && file->dir->sysp)
#ifdef HAVE_DOS_BASED_FILE_SYSTEM
|| !file->dir->sysp
#endif