diff options
author | drh <drh@noemail.net> | 2009-09-09 16:10:50 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-09-09 16:10:50 +0000 |
commit | 3f022189dd7baca7c89c62f9c154067da2c389c0 (patch) | |
tree | 1041268a57f36112ff1bf99ff79f58c6381e91cc /src/os_unix.c | |
parent | f4cfac9d6383edca0e343173ee963715511c2416 (diff) | |
download | sqlite-3f022189dd7baca7c89c62f9c154067da2c389c0.tar.gz sqlite-3f022189dd7baca7c89c62f9c154067da2c389c0.zip |
Suppress some harmless compiler warnings.
FossilOrigin-Name: f0c72a53c5d57d7487b48a06a40816153f47aaac
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 83e9ce231..9b6afe537 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -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 ); |