mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-12 13:01:09 +03:00
Fix a harmless compiler warning introduced into os_unix.c by one of the
recent changes. FossilOrigin-Name: 4bf4d5ebfbf5d157a8bf3a3817e2ce350f25af0e
This commit is contained in:
@@ -5466,7 +5466,7 @@ static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){
|
||||
** return 0. Return 1 if the time and date cannot be found.
|
||||
*/
|
||||
static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){
|
||||
sqlite3_int64 i;
|
||||
sqlite3_int64 i = 0;
|
||||
int rc;
|
||||
UNUSED_PARAMETER(NotUsed);
|
||||
rc = unixCurrentTimeInt64(0, &i);
|
||||
|
||||
Reference in New Issue
Block a user