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 46f4fe479061fda6ec8b30018b863bab91185710..8f227b29ddb9129d203bb77d1b2f13c8995a3ce8 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 98b8ae3fec09ac47ca95acab3c33ea9c708954c3..02c7a37968a6af0a6c78f6cfaba20370a12a46dd 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);
This page took 0.028811 seconds and 4 git commands to generate.