summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2005-04-20 16:34:46 +0000
committerAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2005-04-20 16:34:46 +0000
commit8963a220f36cf0ae2a8a653fd39c983140e29736 (patch)
tree49490fb9ca95148bddef9c3423271e152320c534 /os
parente6a0820d1b479058bddef66018d321940e79260c (diff)
warning fix for Win32
Diffstat (limited to 'os')
-rw-r--r--os/osdep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/osdep.h b/os/osdep.h
index 38c60c661..fca8ecf9a 100644
--- a/os/osdep.h
+++ b/os/osdep.h
@@ -89,7 +89,7 @@ SOFTWARE.
#if defined(NOFILE) && !defined(NOFILES_MAX)
#define OPEN_MAX NOFILE
#else
-#ifndef __UNIXOS2__
+#if !defined(__UNIXOS2__) && !defined(WIN32)
#define OPEN_MAX NOFILES_MAX
#else
#define OPEN_MAX 256