general: whitespace cleanup

Remove trailing whitespace found by this command:
find -name '*.[ch]' | xargs grep "[[:space:]]$"
This commit is contained in:
Thomas Jansen
2011-02-04 10:39:21 +01:00
committed by Max Kellermann
parent e776c605ad
commit 948b8f35e6
9 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ const int16_t *pcm_byteswap_16(struct pcm_buffer *buffer,
static inline uint32_t swab32(uint32_t x)
{
return (x << 24) |
return (x << 24) |
((x & 0xff00) << 8) |
((x & 0xff0000) >> 8) |
(x >> 24);