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; FILE *stream;
char *buf; char *buf;
char openp, sourcep; char openp, sourcep;
sexp_uint_t offset, line, size; sexp_uint_t offset, line;
size_t size;
sexp name; sexp name;
sexp cookie; sexp cookie;
} port; } port;