From: Jason Merrill Date: Wed, 9 Oct 2024 16:31:57 +0000 (-0400) Subject: libcpp: fix typo X-Git-Tag: basepoints/gcc-16~5335 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d264b75eb29cfc1916e3c1ccc7a3251a40458392;p=thirdparty%2Fgcc.git libcpp: fix typo libcpp/ChangeLog: * macro.cc (_cpp_pop_context): Fix typo. --- diff --git a/libcpp/macro.cc b/libcpp/macro.cc index 056b38e6093..2fb38618246 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); }