Skip to content

Commit

Permalink
sqliteInt.h: fix pointer size for ppc64
Browse files Browse the repository at this point in the history
  • Loading branch information
barracuda156 committed Dec 1, 2024
1 parent 9241b00 commit 293d647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsql-sqlite3/src/sqliteInt.h
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ typedef INT16_TYPE LogEst;
# define SQLITE_PTRSIZE __SIZEOF_POINTER__
# elif defined(i386) || defined(__i386__) || defined(_M_IX86) || \
defined(_M_ARM) || defined(__arm__) || defined(__x86) || \
(defined(__APPLE__) && defined(__POWERPC__)) || \
(defined(__APPLE__) && defined(__ppc__)) || \
(defined(__TOS_AIX__) && !defined(__64BIT__))
# define SQLITE_PTRSIZE 4
# else
Expand Down

0 comments on commit 293d647

Please sign in to comment.