diff options
author | maxim <maxim@FreeBSD.org> | 2006-11-11 18:45:20 +0000 |
---|---|---|
committer | maxim <maxim@FreeBSD.org> | 2006-11-11 18:45:20 +0000 |
commit | 90c11a6b82765085da79155d4e3f00143f01157d (patch) | |
tree | b126d8e71b154c3783831726bbba2dd77778ed27 /tools | |
parent | 42ff530d83353d36657642c0356355483f9b3af0 (diff) | |
download | FreeBSD-src-90c11a6b82765085da79155d4e3f00143f01157d.zip FreeBSD-src-90c11a6b82765085da79155d4e3f00143f01157d.tar.gz |
o Indent by tab.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/regression/file/dup/dup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/regression/file/dup/dup.c b/tools/regression/file/dup/dup.c index b87faa4..ad1f6df 100644 --- a/tools/regression/file/dup/dup.c +++ b/tools/regression/file/dup/dup.c @@ -114,7 +114,7 @@ main(int __unused argc, char __unused *argv[]) * fuckups take out each other and make the end-result the way * it was meant to be. */ - if ((fd2 = dup2(fd1, fd1)) < 0) + if ((fd2 = dup2(fd1, fd1)) < 0) err(1, "dup2"); printf("ok %d - dup2(2) to itself works\n", ++test); |