From a2e7d9bdc12b451da58d6660abfb6a80d34defb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sun, 17 Oct 2010 19:48:29 +0000 Subject: [PATCH] Fix T_BOOL bug of issue 8845. --- Modules/_sqlite/connection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h index 58c73971f924..468446d9142b 100644 --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -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 */