From 3de97354b0e11eb30d6ac9d2f79a8620c3ea3894 Mon Sep 17 00:00:00 2001 From: tb Date: Wed, 12 Jan 2022 22:51:44 +0000 Subject: [PATCH] zap spaces before tabs --- usr.bin/timeout/timeout.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/usr.bin/timeout/timeout.c b/usr.bin/timeout/timeout.c index 1eef765490b..057b396950d 100644 --- a/usr.bin/timeout/timeout.c +++ b/usr.bin/timeout/timeout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: timeout.c,v 1.19 2021/09/04 11:49:11 schwarze Exp $ */ +/* $OpenBSD: timeout.c,v 1.20 2022/01/12 22:51:44 tb Exp $ */ /* * Copyright (c) 2021 Job Snijders @@ -64,8 +64,8 @@ usage(void) static double parse_duration(const char *duration) { - double ret; - char *suffix; + double ret; + char *suffix; ret = strtod(duration, &suffix); if (ret == 0 && suffix == duration) @@ -164,17 +164,17 @@ int main(int argc, char **argv) { int ch; - unsigned long i; - int foreground = 0, preserve = 0; - int pstat, status; - int killsig = SIGTERM; - pid_t pgid = 0, pid, cpid = 0; - double first_kill; - double second_kill = 0; - bool timedout = false; - bool do_second_kill = false; - struct sigaction signals; - int signums[] = {-1, SIGTERM, SIGINT, SIGHUP, SIGCHLD, + unsigned long i; + int foreground = 0, preserve = 0; + int pstat, status; + int killsig = SIGTERM; + pid_t pgid = 0, pid, cpid = 0; + double first_kill; + double second_kill = 0; + bool timedout = false; + bool do_second_kill = false; + struct sigaction signals; + int signums[] = {-1, SIGTERM, SIGINT, SIGHUP, SIGCHLD, SIGALRM, SIGQUIT}; const struct option longopts[] = { -- 2.20.1