summaryrefslogtreecommitdiff
path: root/src/s6-rc/s6-rc-dryrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/s6-rc/s6-rc-dryrun.c')
-rw-r--r--src/s6-rc/s6-rc-dryrun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/s6-rc/s6-rc-dryrun.c b/src/s6-rc/s6-rc-dryrun.c
index 99c2c62..71ce9da 100644
--- a/src/s6-rc/s6-rc-dryrun.c
+++ b/src/s6-rc/s6-rc-dryrun.c
@@ -1,6 +1,6 @@
/* ISC license. */
-#include <skalibs/uint.h>
+#include <skalibs/types.h>
#include <skalibs/buffer.h>
#include <skalibs/sgetopt.h>
#include <skalibs/strerr2.h>
@@ -20,7 +20,7 @@ int main (int argc, char const *const *argv)
subgetopt_t l = SUBGETOPT_ZERO ;
for (;;)
{
- register int opt = subgetopt_r(argc, argv, "v:t:", &l) ;
+ int opt = subgetopt_r(argc, argv, "v:t:", &l) ;
if (opt == -1) break ;
switch (opt)
{