aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2019-04-03 17:56:41 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2019-04-03 17:56:41 +0000
commit5adb4def587ef2ac7b5f6b3ed225e001d6d0309c (patch)
tree22b2e710b9c28539d4260b569d0a230b2a0de520
parent7570fd592fccd12c67a294c65a4904c7e1c0a797 (diff)
Fix typo in comment
* files.c (search_path_exhausted): Fix typo in comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@270132 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libcpp/ChangeLog4
-rw-r--r--libcpp/files.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index 261494bd447..7fe5b5276de 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,3 +1,7 @@
+2019-04-03 Jonathan Wakely <jwakely@redhat.com>
+
+ * files.c (search_path_exhausted): Fix typo in comment.
+
2019-02-26 Martin Liska <mliska@suse.cz>
* symtab.c (ht_dump_statistics): Make
diff --git a/libcpp/files.c b/libcpp/files.c
index 77dc1889471..b0ac22be6ba 100644
--- a/libcpp/files.c
+++ b/libcpp/files.c
@@ -455,7 +455,7 @@ find_file_in_dir (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch,
return false;
}
-/* Return tue iff the missing_header callback found the given HEADER. */
+/* Return true iff the missing_header callback found the given HEADER. */
static bool
search_path_exhausted (cpp_reader *pfile, const char *header, _cpp_file *file)
{