diff options
Diffstat (limited to 'graphics/lcms/files/patch-src::cmscgats.c')
-rw-r--r-- | graphics/lcms/files/patch-src::cmscgats.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/lcms/files/patch-src::cmscgats.c b/graphics/lcms/files/patch-src::cmscgats.c new file mode 100644 index 000000000000..a5b955f8f3e0 --- /dev/null +++ b/graphics/lcms/files/patch-src::cmscgats.c @@ -0,0 +1,11 @@ +--- src/cmscgats.c.orig Sat Jun 26 12:31:08 2004 ++++ src/cmscgats.c Sat Jun 26 12:33:13 2004 +@@ -89,7 +89,7 @@ + // ------------------------------------------------------------- Implementation + + +-#define ALIGNLONG(x) (((x)+3) & ~(3)) // Aligns to DWORD boundary ++#define ALIGNLONG(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1)) // Aligns to DWORD boundary + + // #define STRICT_CGATS 1 + |