From 1664c8410d5a5a09780d5c5e401a5edcfada3b03 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Sat, 15 Feb 2020 19:02:36 +0100 Subject: [PATCH] fix Test_Packbits() (64 characters is too low for the Win32 %TEMP% path) should fix the appveyor build --- src/tests/tests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/tests.c b/src/tests/tests.c index 0d0d3dd8..1360ddbd 100644 --- a/src/tests/tests.c +++ b/src/tests/tests.c @@ -151,7 +151,7 @@ int Test_CPC_compare_colors(void) */ int Test_Packbits(void) { - char tempfilename[64]; + char tempfilename[256]; FILE * f; int i, j; long unpacked;