2010-12-17 Michael Snyder <msnyder@vmware.com>

* utils.c (do_my_cleanups): Comment fix-up.
This commit is contained in:
Michael Snyder 2010-12-18 00:11:46 +00:00
parent e010756507
commit 5f2302abf8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-12-17 Michael Snyder <msnyder@vmware.com>
* utils.c (do_my_cleanups): Comment fix-up.
2010-12-17 Kevin Buettner <kevinb@redhat.com>
* mips-tdep.c (make_mips16_addr): New function.

View File

@ -475,7 +475,7 @@ do_my_cleanups (struct cleanup **pmy_chain,
while ((ptr = *pmy_chain) != old_chain)
{
*pmy_chain = ptr->next; /* Do this first incase recursion */
*pmy_chain = ptr->next; /* Do this first in case of recursion. */
(*ptr->function) (ptr->arg);
if (ptr->free_arg)
(*ptr->free_arg) (ptr->arg);