diff options
author | drh <drh@noemail.net> | 2004-02-29 00:11:30 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-02-29 00:11:30 +0000 |
commit | 3039c0a89639d3dcd4bb8d2a9839a6df089dbae7 (patch) | |
tree | 2349b8d62640deae061c5b12bc5f3ded56e65986 /src/os.c | |
parent | 1d78a38f51ded28a88b97929079ad19258608ac1 (diff) | |
download | sqlite-3039c0a89639d3dcd4bb8d2a9839a6df089dbae7.tar.gz sqlite-3039c0a89639d3dcd4bb8d2a9839a6df089dbae7.zip |
Fix some compiler warnings in LCC. The warnings did not indicate real
problems. Ticket #634. Not all warnings in ticket #634 were fixed. (CVS 1276)
FossilOrigin-Name: e97089b7df3e2fbfcf36062099d02ecb75e9a870
Diffstat (limited to 'src/os.c')
-rw-r--r-- | src/os.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1214,7 +1214,7 @@ int sqliteOsFileSize(OsFile *id, off_t *pSize){ ** the LockFileEx() API. */ int isNT(void){ - static osType = 0; /* 0=unknown 1=win95 2=winNT */ + static int osType = 0; /* 0=unknown 1=win95 2=winNT */ if( osType==0 ){ OSVERSIONINFO sInfo; sInfo.dwOSVersionInfoSize = sizeof(sInfo); |