From f2528c6c521cde213e9f7ac3e263b9736d27ef37 Mon Sep 17 00:00:00 2001 From: default Date: Thu, 24 Nov 2022 08:47:02 +0100 Subject: Backport from xs. --- xs_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xs_io.h') diff --git a/xs_io.h b/xs_io.h index 9649484..6112dcb 100644 --- a/xs_io.h +++ b/xs_io.h @@ -79,7 +79,7 @@ d_char *xs_read(FILE *f, int *sz) d_char *xs_readall(FILE *f) /* reads the rest of the file into a string */ { - int size = 0xfffffff; + int size = XS_ALL; return xs_read(f, &size); } -- cgit