commit | a2e7d9bdc12b451da58d6660abfb6a80d34defb5 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sun Oct 17 19:48:29 2010 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sun Oct 17 19:48:29 2010 +0000 |
tree | 42e8b5832a9476edff2e37999edcaae904d90fc8 | |
parent | 0b0ca0c37ebed055e540432a521090670287ebd4 [diff] |
Fix T_BOOL bug of issue 8845.
diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h index 58c7397..468446d 100644 --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h
@@ -39,7 +39,7 @@ /* 1 if we are currently within a transaction, i. e. if a BEGIN has been * issued */ - int inTransaction; + char inTransaction; /* the type detection mode. Only 0, PARSE_DECLTYPES, PARSE_COLNAMES or a * bitwise combination thereof makes sense */