* varobj.c (varobj_update): Fix comment typo.
authorVladimir Prus <vladimir@codesourcery.com>
Wed, 28 May 2008 06:49:56 +0000 (06:49 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Wed, 28 May 2008 06:49:56 +0000 (06:49 +0000)
Fix indentation.

gdb/ChangeLog
gdb/varobj.c

index 65d6044b4dd5eee1a59edc75a36a05ad2bb0a09e..ae01bb9c51b0a347a7f15eb3b41b1ebb86e1dad7 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-28  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * varobj.c (varobj_update): Fix comment typo.
+       Fix indentation.
+
 2008-05-26  Joel Brobecker  <brobecker@adacore.com>
 
        Set the symtab field of symbols read from ECOFF debugging entries.
index 317f6b47fc3e9a3b7050f1e9a658136b8b148856..34db574f1e29a247aee598da1283540f2bf0c4ca 100644 (file)
@@ -1173,18 +1173,18 @@ varobj_update (struct varobj **varp, struct varobj ***changelist,
       new = value_of_root (varp, &type_changed);
       
       /* If this is a floating varobj, and its type has changed,
-        them note that it's changed.  */
+        then note that it's changed.  */
       if (type_changed)
        VEC_safe_push (varobj_p, result, *varp);
       
-        if (install_new_value ((*varp), new, type_changed))
-         {
-           /* If type_changed is 1, install_new_value will never return
-              non-zero, so we'll never report the same variable twice.  */
-           gdb_assert (!type_changed);
-           VEC_safe_push (varobj_p, result, *varp);
-         }
-
+      if (install_new_value ((*varp), new, type_changed))
+       {
+         /* If type_changed is 1, install_new_value will never return
+            non-zero, so we'll never report the same variable twice.  */
+         gdb_assert (!type_changed);
+         VEC_safe_push (varobj_p, result, *varp);
+       }
+      
       if (new == NULL)
        {
          /* This means the varobj itself is out of scope.