mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-07 13:16:36 +02:00
port size should be size_t
This commit is contained in:
parent
f2fb277eab
commit
667e8959e0
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue