diff options
author | Darren Tucker <dtucker@zip.com.au> | 2016-08-02 02:01:52 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2016-08-02 02:01:52 +0200 |
commit | dd1031b78b83083615b68d7163c44f4408635be2 (patch) | |
tree | 623e682acf27a2abf422a27325e5bbad7c5be4b0 /openbsd-compat/bsd-waitpid.c | |
parent | Strip trailing whitespace. (diff) | |
download | openssh-dd1031b78b83083615b68d7163c44f4408635be2.tar.xz openssh-dd1031b78b83083615b68d7163c44f4408635be2.zip |
Replace spaces with tabs.
Mechanically replace spaces with tabs in compat files not synced with
OpenBSD.
Diffstat (limited to 'openbsd-compat/bsd-waitpid.c')
-rw-r--r-- | openbsd-compat/bsd-waitpid.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsd-compat/bsd-waitpid.c b/openbsd-compat/bsd-waitpid.c index c21fbe911..113fb1ea9 100644 --- a/openbsd-compat/bsd-waitpid.c +++ b/openbsd-compat/bsd-waitpid.c @@ -43,11 +43,11 @@ waitpid(int pid, int *stat_loc, int options) /* wait4() wants pid=0 for indiscriminate wait. */ pid = 0; } - wait_pid = wait4(pid, &statusp, options, NULL); + wait_pid = wait4(pid, &statusp, options, NULL); if (stat_loc) - *stat_loc = (int) statusp.w_status; + *stat_loc = (int) statusp.w_status; - return (wait_pid); + return (wait_pid); } #endif /* !HAVE_WAITPID */ |