aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-02-28 19:00:31 +0000
committerTom Tromey <tromey@redhat.com>2013-02-28 19:00:31 +0000
commit81b52a3ae561ad292cf958fc9148b86b9400e0c5 (patch)
tree94fbdc14cf3a54a0878952260257985ecf3bbc40 /gdb
parentaeebdd9b1275015ad6b73f81b2efaea3dfcb7d1e (diff)
downloadgdb-81b52a3ae561ad292cf958fc9148b86b9400e0c5.zip
gdb-81b52a3ae561ad292cf958fc9148b86b9400e0c5.tar.gz
gdb-81b52a3ae561ad292cf958fc9148b86b9400e0c5.tar.bz2
* objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/objfiles.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a3bdecd..2211d62 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2013-02-28 Tom Tromey <tromey@redhat.com>
+
+ * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
+
2013-02-27 Corinna Vinschen <vinschen@redhat.com>
* windows-nat.c: Throughout, fix format strings and casts of
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
index 6d29084..cbfbed2 100644
--- a/gdb/objfiles.h
+++ b/gdb/objfiles.h
@@ -517,7 +517,7 @@ extern void default_iterate_over_objfiles_in_search_order
/* Traverse all object files in program space SS. */
#define ALL_PSPACE_OBJFILES(ss, obj) \
- for ((obj) = ss->objfiles; (obj) != NULL; (obj) = (obj)->next) \
+ for ((obj) = ss->objfiles; (obj) != NULL; (obj) = (obj)->next)
#define ALL_PSPACE_OBJFILES_SAFE(ss, obj, nxt) \
for ((obj) = ss->objfiles; \