From 667e8959e04bd6dc66bb1bfeb6ca1912a8685e43 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Sun, 27 Dec 2009 22:37:55 +0900 Subject: [PATCH] port size should be size_t --- include/chibi/sexp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/chibi/sexp.h b/include/chibi/sexp.h index 918debbe..d161de9d 100644 --- a/include/chibi/sexp.h +++ b/include/chibi/sexp.h @@ -185,7 +185,8 @@ struct sexp_struct { FILE *stream; char *buf; char openp, sourcep; - sexp_uint_t offset, line, size; + sexp_uint_t offset, line; + size_t size; sexp name; sexp cookie; } port;