diff options
author | default <nobody@localhost> | 2022-11-24 08:47:02 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-24 08:47:02 +0100 |
commit | f2528c6c521cde213e9f7ac3e263b9736d27ef37 (patch) | |
tree | f1efdf95b1b933665ed212213abdc0cc9c5f3e56 /xs_io.h | |
parent | 1941d00650df6d6189d4d01fd4f268de7920a5a1 (diff) |
Backport from xs.
Diffstat (limited to 'xs_io.h')
-rw-r--r-- | xs_io.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |