diff options
author | stephan <stephan@noemail.net> | 2025-03-06 13:38:07 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-03-06 13:38:07 +0000 |
commit | b6503f14449a43b68b73126eaa5abb14cd825555 (patch) | |
tree | d8ec6479f21f383b74eb173c620b3fe135dafc69 /src/test_sqllog.c | |
parent | ba6510a3999b4cdaba961108a77812506a585525 (diff) | |
download | sqlite-b6503f14449a43b68b73126eaa5abb14cd825555.tar.gz sqlite-b6503f14449a43b68b73126eaa5abb14cd825555.zip |
Cygwin-centric fixes from Jan Nijtmans.
FossilOrigin-Name: 205979813c7300debb5f1ba270583ef2f08e069d6d01865b5910702889a5c1ed
Diffstat (limited to 'src/test_sqllog.c')
-rw-r--r-- | src/test_sqllog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_sqllog.c b/src/test_sqllog.c index 9ae0e5068..5abf59a8b 100644 --- a/src/test_sqllog.c +++ b/src/test_sqllog.c @@ -84,7 +84,7 @@ #include <sys/types.h> #include <unistd.h> static int getProcessId(void){ -#if SQLITE_OS_WIN +#ifdef _WIN32 return (int)_getpid(); #else return (int)getpid(); |