Fix build warning on Windows.

This commit is contained in:
Andrew Alderwick 2022-04-09 11:37:06 +01:00
parent 1e0edd7461
commit a35ef6b242
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ get_entry(char *p, Uint16 len, const char *pathname, const char *basename, int f
static Uint16
file_read_dir(UxnFile *c, char *dest, Uint16 len)
{
static char pathname[4352];
static char pathname[4356];
char *p = dest;
if(c->de == NULL) c->de = readdir(c->dir);
for(; c->de != NULL; c->de = readdir(c->dir)) {