diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-07 20:31:02 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-07 20:31:02 +0000 |
| commit | 6a9ca73e10c3c4e8a95101313e9c5d46cf018f86 (patch) | |
| tree | 41ae80cb08fa1e280012b799ad0d1e63090b19bc /src/libexecline/el_parse_from_buffer.c | |
| parent | 6245dcef12eed3b12b129519eeaf11f7e221d278 (diff) | |
| download | execline-6a9ca73e10c3c4e8a95101313e9c5d46cf018f86.tar.gz | |
Types fix: first pass
This pass makes variable size_t-ready, so everything works when
the prototypes are fixed in skalibs.
Some code uses "unsigned int *" where it should be "size_t *";
it cannot be changed now, but it's been marked with XXX. It must
change at the same time as the skalibs API.
Diffstat (limited to 'src/libexecline/el_parse_from_buffer.c')
| -rw-r--r-- | src/libexecline/el_parse_from_buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libexecline/el_parse_from_buffer.c b/src/libexecline/el_parse_from_buffer.c index 802fe40..83862f3 100644 --- a/src/libexecline/el_parse_from_buffer.c +++ b/src/libexecline/el_parse_from_buffer.c @@ -1,12 +1,13 @@ /* ISC license. */ +#include <sys/types.h> #include <skalibs/buffer.h> #include <skalibs/stralloc.h> #include <execline/execline.h> static int next (unsigned char *c, void *p) { - register int r = buffer_get((buffer *)p, (char *)c, 1) ; + register ssize_t r = buffer_get((buffer *)p, (char *)c, 1) ; if (r < 0) return 0 ; if (!r) *c = 0 ; return 1 ; |
