about summary refs log tree commit diff
path: root/src/minutils/s6-devd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/minutils/s6-devd.c')
-rw-r--r--src/minutils/s6-devd.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/minutils/s6-devd.c b/src/minutils/s6-devd.c
index 74f2d41..58508a5 100644
--- a/src/minutils/s6-devd.c
+++ b/src/minutils/s6-devd.c
@@ -1,5 +1,6 @@
 /* ISC license. */
 
+#include <sys/types.h>
 #include <skalibs/uint.h>
 #include <skalibs/sgetopt.h>
 #include <skalibs/strerr2.h>
@@ -11,7 +12,8 @@
 
 static inline int check_targ (char const *s)
 {
-  unsigned int t = 0, pos = 0 ;
+  size_t pos = 0 ;
+  unsigned int t = 0 ;
   pos += uint_scan(s + pos, &t) ;
   if (s[pos] && s[pos++] != ':') return 0 ;
   if (!t) return 1 ;
@@ -50,7 +52,8 @@ int main (int argc, char const *const *argv, char const *const *envp)
   if (!argc) strerr_dieusage(100, USAGE) ;
 
   {
-    unsigned int m = 0, pos = 0 ;
+    size_t pos = 0 ;
+    unsigned int m = 0 ;
     char fmt[UINT_FMT * 3] ;
     char const *newargv[argc + 15] ;
     newargv[m++] = S6_LINUX_UTILS_BINPREFIX "s6-uevent-listener" ;