Skip to content

Commit

Permalink
Fix a bug in the detection of iOS when setting the default mmap_limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
D. Richard Hipp committed Apr 3, 2013
1 parent 4daa637 commit be17057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sqliteLimit.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
*/
#ifdef __APPLE__
# include <TargetConditionals.h>
# if defined(TARGET_OS_IPHONE)
# if TARGET_OS_IPHONE
# define SQLITE_DEFAULT_MMAP_LIMIT 0
# endif
#endif
Expand Down

0 comments on commit be17057

Please sign in to comment.