]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix T_BOOL bug of issue 8845.
authorMartin v. Löwis <martin@v.loewis.de>
Sun, 17 Oct 2010 19:48:29 +0000 (19:48 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sun, 17 Oct 2010 19:48:29 +0000 (19:48 +0000)
Modules/_sqlite/connection.h

index 58c73971f924919b0987e2a46290853024492feb..468446d9142bab08790d8beac9958c9445549a4c 100644 (file)
@@ -39,7 +39,7 @@ typedef struct
 
     /* 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 */