1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Suppress some harmless compiler warnings.

FossilOrigin-Name: f0c72a53c5d57d7487b48a06a40816153f47aaac
This commit is contained in:
drh
2009-09-09 16:10:50 +00:00
parent f4cfac9d63
commit 3f022189dd
5 changed files with 18 additions and 14 deletions

View File

@@ -1278,7 +1278,7 @@ static int unixLock(sqlite3_file *id, int locktype){
unixFile *pFile = (unixFile*)id;
struct unixLockInfo *pLock = pFile->pLock;
struct flock lock;
int s;
int s = 0;
int tErrno;
assert( pFile );