2010-12-17 Michael Snyder <msnyder@vmware.com>
authorMichael Snyder <msnyder@vmware.com>
Sat, 18 Dec 2010 00:11:46 +0000 (00:11 +0000)
committerMichael Snyder <msnyder@vmware.com>
Sat, 18 Dec 2010 00:11:46 +0000 (00:11 +0000)
* utils.c (do_my_cleanups): Comment fix-up.

gdb/ChangeLog
gdb/utils.c

index 46f4fe4..8f227b2 100644 (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.
index 98b8ae3..02c7a37 100644 (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);