diff options
author | drh <drh@noemail.net> | 2001-12-05 00:21:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-12-05 00:21:20 +0000 |
commit | b8ca307e7bb798c407ff38d7fa3c86d142431b90 (patch) | |
tree | 7e44f907adca35230baf6271f95f6214fe04a88e /src/sqliteInt.h | |
parent | 6ff13859d57c0e83194b88a46b096cf7af1d8557 (diff) | |
download | sqlite-b8ca307e7bb798c407ff38d7fa3c86d142431b90.tar.gz sqlite-b8ca307e7bb798c407ff38d7fa3c86d142431b90.zip |
Bug fix: sqlite_exec() would sometimes return SQLITE_PROTOCOL when it
should have returned SQLITE_BUSY. There was also a deadlock that the
previous bug was masking. (CVS 322)
FossilOrigin-Name: 585ed5ebf1c1afc8ae1d569b121208018d8ecd49
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index b80eac96a..03e0504d9 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.71 2001/11/22 00:01:27 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.72 2001/12/05 00:21:20 drh Exp $ */ #include "sqlite.h" #include "hash.h" @@ -519,8 +519,8 @@ void sqliteExprResolveInSelect(Parse*, Expr*); int sqliteExprAnalyzeAggregates(Parse*, Expr*); void sqliteParseInfoReset(Parse*); Vdbe *sqliteGetVdbe(Parse*); -int sqliteRandomByte(); -int sqliteRandomInteger(); +int sqliteRandomByte(void); +int sqliteRandomInteger(void); void sqliteBeginTransaction(Parse*); void sqliteCommitTransaction(Parse*); void sqliteRollbackTransaction(Parse*); |