diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-12 23:16:36 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-12 23:16:36 +0000 |
commit | bf6d072124a960d3b84ae39cd15c5aeca2e41c88 (patch) | |
tree | c082150f61e67d929b1baca2f5c6104fe959ccac /src/fdholder/s6-fdholder-setdumpc.c | |
parent | 81c7a02ec870ef3dba9f8b8f8dbecbd119e5ea47 (diff) | |
download | s6-bf6d072124a960d3b84ae39cd15c5aeca2e41c88.tar.xz |
Types fix, first pass
Diffstat (limited to 'src/fdholder/s6-fdholder-setdumpc.c')
-rw-r--r-- | src/fdholder/s6-fdholder-setdumpc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fdholder/s6-fdholder-setdumpc.c b/src/fdholder/s6-fdholder-setdumpc.c index 9e253d9..5c80fd7 100644 --- a/src/fdholder/s6-fdholder-setdumpc.c +++ b/src/fdholder/s6-fdholder-setdumpc.c @@ -1,5 +1,6 @@ /* ISC license. */ +#include <sys/types.h> #include <skalibs/uint.h> #include <skalibs/bytestr.h> #include <skalibs/env.h> @@ -49,7 +50,8 @@ int main (int argc, char const *const *argv, char const *const *envp) tain_add_g(&deadline, &deadline) ; for (; i < dumplen ; i++) { - unsigned int fd, len ; + size_t len ; + unsigned int fd ; byte_copy(s, 6, "S6_FD_") ; s[6 + uint_fmt(s+6, i)] = 0 ; x = env_get2(envp, s) ; |