]> git.pld-linux.org Git - packages/libraw.git/blame_incremental - int64.patch
- up to 0.21.2
[packages/libraw.git] / int64.patch
... / ...
CommitLineData
1--- LibRaw-0.20.2/libraw/libraw_types.h~ 2020-10-15 07:06:07.000000000 +0200
2+++ LibRaw-0.20.2/libraw/libraw_types.h 2022-02-14 22:27:43.313433599 +0100
3@@ -92,8 +92,8 @@
4 typedef __int64 INT64;
5 typedef unsigned __int64 UINT64;
6 #else
7-typedef long long INT64;
8-typedef unsigned long long UINT64;
9+typedef int64_t INT64;
10+typedef uint64_t UINT64;
11 #endif
12
13 typedef unsigned char uchar;
14--- LibRaw-0.20.2/internal/defines.h~ 2020-10-15 07:06:07.000000000 +0200
15+++ LibRaw-0.20.2/internal/defines.h 2022-02-14 22:29:12.905376208 +0100
16@@ -60,8 +60,8 @@
17 #include <unistd.h>
18 #include <utime.h>
19 #include <netinet/in.h>
20-typedef long long INT64;
21-typedef unsigned long long UINT64;
22+typedef int64_t INT64;
23+typedef uint64_t UINT64;
24 #endif
25
26 #ifdef NODEPS
This page took 0.097428 seconds and 4 git commands to generate.