summaryrefslogtreecommitdiff
path: root/graphics/lcms/files/patch-ab
blob: 4db3b692b82e86b8d81d825db50a7b3ccfca9d20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- source/cmsmtrx.c	Thu May 18 18:08:13 2000
+++ source/cmsmtrx.c	Mon Oct 30 09:53:39 2000
@@ -33,2 +33,3 @@
 #include "lcms.h"
+#include <sys/types.h>
 
@@ -250,3 +251,3 @@
 #ifdef USE_INT64
-       __int64 l = (__int64) a * b + 0x8000i64;
+       u_int64_t l = (u_int64_t) a * b + (u_int64_t)0x8000;
        return (Fixed32) (l >> 16);
@@ -711,2 +712,2 @@
        VEC3scaleAndCut(&r -> v[2], &v -> v[2], d);
-}
+}