From: Ulrich Drepper Date: Tue, 10 Oct 2006 15:34:34 +0000 (+0000) Subject: Whitespace fixes. X-Git-Tag: elfutils-0.124 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db1d54386fc38a30eff030517cbbfedf758fa32a;p=thirdparty%2Felfutils.git Whitespace fixes. --- diff --git a/libdw/libdwP.h b/libdw/libdwP.h index 09599e6d8..8baa3fa33 100644 --- a/libdw/libdwP.h +++ b/libdw/libdwP.h @@ -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));\