* objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
authorTom Tromey <tromey@redhat.com>
Thu, 28 Feb 2013 19:00:31 +0000 (19:00 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 28 Feb 2013 19:00:31 +0000 (19:00 +0000)
gdb/ChangeLog
gdb/objfiles.h

index a3bdecd3986c8034e86dfc0c7e051e9146cb77e7..2211d62152bc1991f97690033d859961fc3195fc 100644 (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
index 6d29084a5c5b3395a00f49247daf9a1e40e8548b..cbfbed222c3a199979f3d13105d626f90113fb15 100644 (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;                   \
This page took 0.028624 seconds and 4 git commands to generate.