aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2024-10-09 12:31:57 -0400
committerJason Merrill <jason@redhat.com>2024-10-09 17:28:35 -0400
commitd264b75eb29cfc1916e3c1ccc7a3251a40458392 (patch)
tree70995a8a73fa2c65bc20ce800f06d5e18009954f
parent08e91d71e5cc155f1fe7b9ee1c44829aa24ff921 (diff)
downloadgcc-d264b75eb29cfc1916e3c1ccc7a3251a40458392.zip
gcc-d264b75eb29cfc1916e3c1ccc7a3251a40458392.tar.gz
gcc-d264b75eb29cfc1916e3c1ccc7a3251a40458392.tar.bz2
libcpp: fix typo
libcpp/ChangeLog: * macro.cc (_cpp_pop_context): Fix typo.
-rw-r--r--libcpp/macro.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/macro.cc b/libcpp/macro.cc
index 056b38e..2fb3861 100644
--- a/libcpp/macro.cc
+++ b/libcpp/macro.cc
@@ -2905,7 +2905,7 @@ _cpp_pop_context (cpp_reader *pfile)
}
pfile->context = context->prev;
- /* decrease peak memory consumption by feeing the context. */
+ /* Decrease peak memory consumption by freeing the context. */
pfile->context->next = NULL;
free (context);
}