diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-04-10 16:00:49 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-04-10 16:00:49 +0000 |
commit | f4a34a08950031c5a3fb8a1006f6ad983b383d0e (patch) | |
tree | 649650fb26e3a20b07571d098f4e8e765640056d /gdb/varobj.c | |
parent | 2dbd25e5ebb6a3aee5b2e0054d94c8c684de2fd2 (diff) | |
download | gdb-f4a34a08950031c5a3fb8a1006f6ad983b383d0e.zip gdb-f4a34a08950031c5a3fb8a1006f6ad983b383d0e.tar.gz gdb-f4a34a08950031c5a3fb8a1006f6ad983b383d0e.tar.bz2 |
gdb/
* varobj.c (varobj_invalidate): Fix formatting text width.
Diffstat (limited to 'gdb/varobj.c')
-rw-r--r-- | gdb/varobj.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c index ecd6f85..a7957f6 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -2764,7 +2764,8 @@ varobj_invalidate (void) while (*varp != NULL) { /* Floating varobjs are reparsed on each stop, so we don't care if - the presently parsed expression refers to something that's gone. */ + the presently parsed expression refers to something that's gone. + */ if ((*varp)->root->floating) continue; @@ -2773,9 +2774,10 @@ varobj_invalidate (void) { struct varobj *tmp_var; - /* Try to create a varobj with same expression. If we succeed replace - the old varobj, otherwise invalidate it. */ - tmp_var = varobj_create (NULL, (*varp)->name, (CORE_ADDR) 0, USE_CURRENT_FRAME); + /* Try to create a varobj with same expression. If we succeed + replace the old varobj, otherwise invalidate it. */ + tmp_var = varobj_create (NULL, (*varp)->name, (CORE_ADDR) 0, + USE_CURRENT_FRAME); if (tmp_var != NULL) { tmp_var->obj_name = xstrdup ((*varp)->obj_name); |