]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Whitespace fixes. elfutils-0.124
authorUlrich Drepper <drepper@redhat.com>
Tue, 10 Oct 2006 15:34:34 +0000 (15:34 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 10 Oct 2006 15:34:34 +0000 (15:34 +0000)
libdw/libdwP.h

index 09599e6d83ef26691d059f75081f0bbcf6b8c091..8baa3fa33e70baaa003b3dba8afffe34d3f681f1 100644 (file)
@@ -283,7 +283,7 @@ struct Dwarf_CU
   void *locs;
 };
 
-#define CUDIE(fromcu)                                                        \
+#define CUDIE(fromcu) \
   ((Dwarf_Die)                                                               \
    {                                                                         \
      .cu = (fromcu),                                                         \
@@ -315,7 +315,7 @@ extern void __libdw_seterrno (int value) internal_function;
 
 
 /* Memory handling, the easy parts.  This macro does not do any locking.  */
-#define libdw_alloc(dbg, type, tsize, cnt)                                   \
+#define libdw_alloc(dbg, type, tsize, cnt) \
   ({ struct libdw_memblock *_tail = (dbg)->mem_tail;                         \
      size_t _required = (tsize) * (cnt);                                     \
      type *_result = (type *) (_tail->mem + (_tail->size - _tail->remaining));\