diff options
author | drh <drh@noemail.net> | 2010-06-26 21:34:06 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-06-26 21:34:06 +0000 |
commit | ff82894faa93046bfa0dfdb5cbf846c6ffc1a558 (patch) | |
tree | 71ca2e2b47d844952e278b6d12d1af69a29a03e1 /src/os_unix.c | |
parent | 37f99187589962dc5338cdf21eb71f376e972d1a (diff) | |
download | sqlite-ff82894faa93046bfa0dfdb5cbf846c6ffc1a558.tar.gz sqlite-ff82894faa93046bfa0dfdb5cbf846c6ffc1a558.zip |
Suppress various compiler warnings.
FossilOrigin-Name: e82d008eaffb5522080cad6c69c1b194b78eadbd
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 6cad8f008..06712668b 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -3546,6 +3546,7 @@ static int unixShmLock( static void unixShmBarrier( sqlite3_file *fd /* Database file holding the shared memory */ ){ + UNUSED_PARAMETER(fd); unixEnterMutex(); unixLeaveMutex(); } @@ -4838,6 +4839,7 @@ static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){ */ static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){ sqlite3_int64 i; + UNUSED_PARAMETER(NotUsed); unixCurrentTimeInt64(0, &i); *prNow = i/86400000.0; return 0; |