]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libcpp: fix typo
authorJason Merrill <jason@redhat.com>
Wed, 9 Oct 2024 16:31:57 +0000 (12:31 -0400)
committerJason Merrill <jason@redhat.com>
Wed, 9 Oct 2024 21:28:35 +0000 (17:28 -0400)
libcpp/ChangeLog:

* macro.cc (_cpp_pop_context): Fix typo.

libcpp/macro.cc

index 056b38e609313ef74f9dbd3acf602327ce2aeedd..2fb38618246aa5c2efc868bc046fa23f452476dc 100644 (file)
@@ -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);
 }