03a5c3621e3185e4ca116805317a98cdc8595443 introduced another usage of the format
specifier `%zu` which has some compatibility issues on Windows. This change
switches to what it should have done to begin with, used the compatibility shim.
#include "config.h"
+#include <cgraph/prisize_t.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
data = malloc(data_size);
ok = fread(data, data_size, 1, in) == 1;
if (!ok) {
- fprintf(stderr, "Error: WebP could not read %zu bytes of data from %s\n",
- data_size, in_file);
+ fprintf(stderr, "Error: WebP could not read %" PRISIZE_T
+ " bytes of data from %s\n", data_size, in_file);
free(data);
return NULL;
}