Skip to content

Commit 202ed75

Browse files
committed
e/c: fix header for quicklz
Change #if to #if defined() to allow it to compile
1 parent 7d202a9 commit 202ed75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/quicklz.bi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ type ui16 as ushort
6767
#endif
6868

6969
' Detect if pointer size is 64-bit. It's not fatal if some 64-bit target is not detected because this is only for adding an optional 64-bit optimization.
70-
#if __FB_64BIT__
70+
#if defined(__FB_64BIT__)
7171
#define QLZ_PTR_64
7272
#endif
7373

0 commit comments

Comments
 (0)