You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/ogmtools/files/ogmtools-1.5-endian-fix.patch

12 lines
333 B

--- a/avilib/avidump.c
+++ b/avilib/avidump.c
@@ -54,7 +54,7 @@
((x<<8) & 0x00ff0000) |\
((x<<24) & 0xff000000))
# define SWAP8(x) (((SWAP4(x)<<32) & 0xffffffff00000000ULL) |\
- (SWAP4(x)))
+ SWAP4(x))
#else
# define SWAP2(a) (a)
# define SWAP4(a) (a)