diff options
author | drh <> | 2023-10-09 14:47:25 +0000 |
---|---|---|
committer | drh <> | 2023-10-09 14:47:25 +0000 |
commit | 7e60f6dbf109fd46d963fa91da7a0367e486c0bc (patch) | |
tree | f645c0ecf65ffaff2160c786ed35ea85ac907953 /src/sqliteInt.h | |
parent | 50da20d5b112b393683dcc2bff6b08d618383441 (diff) | |
download | sqlite-7e60f6dbf109fd46d963fa91da7a0367e486c0bc.tar.gz sqlite-7e60f6dbf109fd46d963fa91da7a0367e486c0bc.zip |
Fix a compiler warning caused by the previous check-in.
FossilOrigin-Name: 7e8768bf8b4002b1c287f2bc95262548e2ae81b437936154f2bb1ea1f739a904
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 086570d66..54f8db50a 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -325,7 +325,7 @@ #if defined(_MSC_VER) && !defined(SQLITE_OMIT_SEH) # define SQLITE_USE_SEH 1 #else -# undef SQLITE_USE_SEH 0 +# undef SQLITE_USE_SEH #endif /* |