1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Compilation failed on Debian 32-bit.

Fixing DWORD definition once again as "unsigned long",
which is the way how MS defines it.

modified:
  @ storage/connect/os.h
    Changing DWORD defitition

  @ storage/connect/tabodbc.cpp
    Moving "#define NODW" to proper place.
This commit is contained in:
Alexander Barkov
2013-01-29 19:15:22 +04:00
parent d78d3d4fc9
commit ab76cdb236
2 changed files with 8 additions and 2 deletions

View File

@@ -46,12 +46,12 @@
#else
#if defined(UNIX)
#include <errno.h>
#define NODW
#include "osutil.h"
#else
#include <io.h>
#endif
#include <fcntl.h>
#define NODW
#endif
/***********************************************************************/