* objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.

This commit is contained in:
Tom Tromey 2013-02-28 19:00:31 +00:00
parent aeebdd9b12
commit 81b52a3ae5
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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; \