diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/config-win.h | 3 | ||||
-rw-r--r-- | include/mysys_err.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/include/config-win.h b/include/config-win.h index d9a6ce8d56b..024a708b3b5 100644 --- a/include/config-win.h +++ b/include/config-win.h @@ -288,8 +288,7 @@ inline double ulonglong2double(ulonglong value) #define FN_NETWORK_DRIVES /* Uses \\ to indicate network drives */ #define FN_NO_CASE_SENCE /* Files are not case-sensitive */ #define FN_LOWER_CASE TRUE /* Files are represented in lower case */ -#define MY_NFILE 127 /* This is only used to save filenames */ - +#define MY_NFILE 1024 #define DO_NOT_REMOVE_THREAD_WRAPPERS #define thread_safe_increment(V,L) InterlockedIncrement((long*) &(V)) diff --git a/include/mysys_err.h b/include/mysys_err.h index 660bb60edee..b379f5bcbc9 100644 --- a/include/mysys_err.h +++ b/include/mysys_err.h @@ -22,7 +22,7 @@ extern "C" { #endif #define GLOB 0 /* Error maps */ -#define GLOBERRS 23 /* Max number of error messages in map's */ +#define GLOBERRS 24 /* Max number of error messages in map's */ #define EE(X) globerrs[ X ] /* Defines to add error to right map */ extern const char * NEAR globerrs[]; /* my_error_messages is here */ |