aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2014-03-05 23:12:55 +0000
committerdrh <drh@noemail.net>2014-03-05 23:12:55 +0000
commit3bde1354ff995a17adbdd09bc55bc2bf67220966 (patch)
treed872e2108d308d9d85c18ea55ba53b07092f8928 /src/sqliteInt.h
parent0503cf491fe8e69ed89fbc4ec390e1378f5c376e (diff)
parentdc90d3d8af0c560869ce2dd1ed576ff6745ac58c (diff)
downloadsqlite-3bde1354ff995a17adbdd09bc55bc2bf67220966.tar.gz
sqlite-3bde1354ff995a17adbdd09bc55bc2bf67220966.zip
Merge compiler-warning fixes from trunk.
FossilOrigin-Name: a1f2b0428518ec18af74a0e01deb4e40cd95a78f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index d07a27d97..69a61ad5a 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2026,8 +2026,8 @@ typedef u64 Bitmask;
** contains more than 63 columns and the 64-th or later column is used.
*/
struct SrcList {
- u8 nSrc; /* Number of tables or subqueries in the FROM clause */
- u8 nAlloc; /* Number of entries allocated in a[] below */
+ int nSrc; /* Number of tables or subqueries in the FROM clause */
+ u32 nAlloc; /* Number of entries allocated in a[] below */
struct SrcList_item {
Schema *pSchema; /* Schema to which this item is fixed */
char *zDatabase; /* Name of database holding this table */