mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
16 lines
657 B
Plaintext
16 lines
657 B
Plaintext
$NetBSD: patch-aa,v 1.1.1.1 2008/02/08 21:18:44 drochner Exp $
|
|
|
|
--- dstacker_compr.c.orig 2008-02-08 20:30:49.000000000 +0100
|
|
+++ dstacker_compr.c
|
|
@@ -139,8 +139,8 @@ INLINE __u16 swap_bytes_in_word(__u16 x)
|
|
/* this is problematic on architectures, */
|
|
/* which cannot do __u16 access to odd address. */
|
|
/* used for temporary storage of LZ intercode. */
|
|
-#define C_ST_u16(p,v) {put_unaligned(v,((__u16*)p)++);}
|
|
-#define C_LD_u16(p,v) {v=get_unaligned(((__u16*)p)++);}
|
|
+#define C_ST_u16(p,v) {put_unaligned(v,p);p=(__u16*)p+1;}
|
|
+#define C_LD_u16(p,v) {v=get_unaligned(p);p=(__u16*)p+1;}
|
|
|
|
/* for reading and writting from/to bitstream */
|
|
typedef
|