libcpp: fix typo

libcpp/ChangeLog:

	* macro.cc (_cpp_pop_context): Fix typo.
This commit is contained in:
Jason Merrill
2024-10-09 12:31:57 -04:00
parent 08e91d71e5
commit d264b75eb2

View 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);
}