diff options
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 0c1ff62ab..6fcabd917 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -1185,7 +1185,7 @@ retry: * The amount is limited by the fact that read() only can read * upto max_unsigned characters (and other things). */ -#if SIZEOF_INT <= 2 +#if VIM_SIZEOF_INT <= 2 if (linerest >= 0x7ff0) { ++split; @@ -1197,7 +1197,7 @@ retry: { if (!skip_read) { -#if SIZEOF_INT > 2 +#if VIM_SIZEOF_INT > 2 # if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L) size = SSIZE_MAX; /* use max I/O size, 52K */ # else |