diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-09 12:14:20 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-09 12:14:20 +0000 |
commit | 813abb7c8e83ad7382f22b1f04bb47523e34f88f (patch) | |
tree | f877e69143b17d353e631f5c3dc8cd249d537909 /ldso/util | |
parent | 0af25e081cb00b49b073cfdc58a322e9cb9ecd37 (diff) |
Patch from Stefan Allius to remove obsolete printfs
Diffstat (limited to 'ldso/util')
-rw-r--r-- | ldso/util/bswap.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ldso/util/bswap.h b/ldso/util/bswap.h index 71867885e..5388c11c6 100644 --- a/ldso/util/bswap.h +++ b/ldso/util/bswap.h @@ -38,7 +38,6 @@ static __inline__ uint32_t bswap_32(uint32_t x) uint32_t res; swab((void*)&x, (void*)&res, sizeof(uint32_t)); - printf ("bswap_32: %x > %x\n",x,res); return res; } @@ -48,7 +47,6 @@ static __inline__ uint16_t bswap_16(uint16_t x) uint16_t res; swab((void*)&x, (void*)&res, sizeof(uint16_t)); - printf ("bswap_32: %x > %x\n",x,res); return res; } #endif |