general: whitespace cleanup
Remove trailing whitespace found by this command: find -name '*.[ch]' | xargs grep "[[:space:]]$"
This commit is contained in:
committed by
Max Kellermann
parent
e776c605ad
commit
948b8f35e6
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user