diff options
author | drh <drh@noemail.net> | 2011-04-11 15:36:26 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-04-11 15:36:26 +0000 |
commit | c6e4172a126ddf5e39744639bd5a18b521fb01cf (patch) | |
tree | c149b533b75d0fe05d80f32011108c4c6508e321 /src/os_os2.c | |
parent | 68bf06716d7a969f78823c7a3b0f5ecfff5c8a71 (diff) | |
download | sqlite-c6e4172a126ddf5e39744639bd5a18b521fb01cf.tar.gz sqlite-c6e4172a126ddf5e39744639bd5a18b521fb01cf.zip |
Updates to the OS/2 patches. This change also move the location of a global
variable declaration in shell.c which might effect other build targets.
FossilOrigin-Name: 73906b67dc920e0c36e68ef9a302be3b495e8e3a
Diffstat (limited to 'src/os_os2.c')
-rw-r--r-- | src/os_os2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_os2.c b/src/os_os2.c index c3dd68f71..487ac3c3c 100644 --- a/src/os_os2.c +++ b/src/os_os2.c @@ -1837,7 +1837,7 @@ static int os2CurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){ ** current time and date as a Julian Day number into *prNow and ** return 0. Return 1 if the time and date cannot be found. */ -int os2CurrentTime( sqlite3_vfs *pVfs, double *prNow ){ +static int os2CurrentTime( sqlite3_vfs *pVfs, double *prNow ){ int rc; sqlite3_int64 i; rc = os2CurrentTimeInt64(pVfs, &i); |