Browse code

Fix build warning on Windows.

Andrew Alderwick authored on 09/04/2022 10:37:06
Showing 1 changed files
... ...
@@ -66,7 +66,7 @@ get_entry(char *p, Uint16 len, const char *pathname, const char *basename, int f
66 66
 static Uint16
67 67
 file_read_dir(UxnFile *c, char *dest, Uint16 len)
68 68
 {
69
-	static char pathname[4352];
69
+	static char pathname[4356];
70 70
 	char *p = dest;
71 71
 	if(c->de == NULL) c->de = readdir(c->dir);
72 72
 	for(; c->de != NULL; c->de = readdir(c->dir)) {