diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2017-08-08 22:36:22 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2017-08-08 22:36:22 +0200 |
commit | 7947121e9a28961f974ca09b57417bb670437bb4 (patch) | |
tree | 928bcd4dccaa5ec53262e75cf1215c0a7f2bbbf2 /storage/connect/os.h | |
parent | 4d4ba60c6e7a589b0dc54de108cbd4204b6b3b6a (diff) | |
download | mariadb-git-7947121e9a28961f974ca09b57417bb670437bb4.tar.gz |
Trying to fix Linux compile on DWORDW. Modified: storage/connect/os.h
Diffstat (limited to 'storage/connect/os.h')
-rw-r--r-- | storage/connect/os.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/storage/connect/os.h b/storage/connect/os.h index e2b165fb3f5..d5fd1613135 100644 --- a/storage/connect/os.h +++ b/storage/connect/os.h @@ -46,7 +46,9 @@ typedef int INT; sqltypes.h (through sql.h or sqlext.h). */ typedef unsigned long DWORD; -#endif /* !NODW */ +#else // NODW +typedef unsigned int DWORD; +#endif // NODW #undef HANDLE typedef int HANDLE; |