summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/sandman.m3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/sandman.m b/scripts/sandman.m
index 838920d..99899ab 100644
--- a/scripts/sandman.m
+++ b/scripts/sandman.m
@@ -44,8 +44,7 @@ static void handler(int signal) {
int main(int argc, char *argv[]) {
uint delay = 8;
- int opt;
- while (0 < (opt = getopt(argc, argv, "t:"))) {
+ for (int opt; 0 < (opt = getopt(argc, argv, "t:"));) {
switch (opt) {
break; case 't': delay = strtoul(optarg, NULL, 10);
break; default: return EX_USAGE;