From debbff76f9b97f77ffa6249e92d2573548a99a40 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 25 Sep 2014 19:58:22 +0200 Subject: Remove mpbswap.h This was once central, but now it's almost unused. Only vf_divtc still uses it for extremely weird and incomprehensible reasons. The use in stream.c is trivial. Replace these, and remove mpbswap.h. --- stream/stream.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'stream') diff --git a/stream/stream.c b/stream/stream.c index 7d8dc7d64d..ae4335c8b7 100644 --- a/stream/stream.c +++ b/stream/stream.c @@ -31,7 +31,6 @@ #include #include -#include "osdep/mpbswap.h" #include "osdep/atomics.h" #include "talloc.h" @@ -860,7 +859,7 @@ static uint16_t stream_read_word_endian(stream_t *s, bool big_endian) unsigned int y = stream_read_char(s); y = (y << 8) | stream_read_char(s); if (big_endian) - y = bswap_16(y); + y = (y >> 8) | ((y << 8) & 0xFF); return y; } -- cgit v1.2.3