This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Fix wordsize check for clang
tags/1.9.8
falkTX
7 years ago
parent
6dc7d2c698
commit
46793283e7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
source/includes/CarlaDefines.h
+ 1
- 1
source/includes/CarlaDefines.h
View File
@@ -113,7 +113,7 @@
# define P_UINTPTR "%lx"
# define P_SIZE "%lu"
# define P_SSIZE "%li"
#elif defined(__WORDSIZE) && __WORDSIZE == 64
#elif
(
defined(__WORDSIZE) && __WORDSIZE == 64
) || (defined(__SIZE_WIDTH__) && __SIZE_WIDTH__ == 64)
# define P_INT64 "%li"
# define P_UINT64 "%lu"
# define P_INTPTR "%li"
Write
Preview
Loading…
Cancel
Save