port size should be size_t

This commit is contained in:
Alex Shinn 2009-12-27 22:37:55 +09:00
parent f2fb277eab
commit 667e8959e0

View file

@ -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;