Skip to content

Commit 00eb9db

Browse files
author
Francisco Javier Trujillo Mata
committed
Fix wrong tU64 lenght
1 parent 000c4cf commit 00eb9db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/ps2s/types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
typedef unsigned char tU8;
1313
typedef unsigned short int tU16;
1414
typedef unsigned int tU32;
15-
typedef unsigned long tU64;
15+
typedef unsigned long long tU64;
1616
// it doesn't really make sense to have a non-16-byte-aligned qword type...
1717
typedef unsigned int tU128 __attribute__((mode(TI), aligned(16)));
1818

0 commit comments

Comments
 (0)