aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_byteswap.c
diff options
context:
space:
mode:
authorThomas Jansen <mithi@mithi.net>2011-02-04 10:39:21 +0100
committerMax Kellermann <max@duempel.org>2011-02-09 22:42:31 +0100
commit948b8f35e6fc578c85a0cfc8e143e1325ce99043 (patch)
tree022148bcb71a123f151d05b5936bc66ca35d332a /src/pcm_byteswap.c
parente776c605adeb984aae290cdff38c5f8dd0cd291e (diff)
downloadmpd-948b8f35e6fc578c85a0cfc8e143e1325ce99043.tar.gz
mpd-948b8f35e6fc578c85a0cfc8e143e1325ce99043.tar.xz
mpd-948b8f35e6fc578c85a0cfc8e143e1325ce99043.zip
general: whitespace cleanup
Remove trailing whitespace found by this command: find -name '*.[ch]' | xargs grep "[[:space:]]$"
Diffstat (limited to 'src/pcm_byteswap.c')
-rw-r--r--src/pcm_byteswap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_byteswap.c b/src/pcm_byteswap.c
index 967c574cb..6577319d4 100644
--- a/src/pcm_byteswap.c
+++ b/src/pcm_byteswap.c
@@ -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);