diff options
Diffstat (limited to 'src/nvim/os/shell.c')
| -rw-r--r-- | src/nvim/os/shell.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index f1e2c5440f..f7d1154169 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -399,8 +399,8 @@ int os_expand_wildcards(int num_pat, char **pat, int *num_file, char ***file, in      fclose(fd);      return FAIL;    } -#if SIZEOF_LONG_LONG > SIZEOF_SIZE_T -  assert(templen <= (long long)SIZE_MAX);  // NOLINT(runtime/int) +#if 8 > SIZEOF_SIZE_T +  assert(templen <= SIZE_MAX);  // NOLINT(runtime/int)  #endif    len = (size_t)templen;    fseek(fd, 0L, SEEK_SET); | 
