diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 06:41:30 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 06:41:30 +0000 |
commit | a14d555c873398b14776ca4f2c33f9c69617afb9 (patch) | |
tree | 350f6f98843363254f9afe467ae0c92d5a9d7f43 /usr.bin/file/compress.c | |
parent | f3a2b348daf9fa6063c38d2d69563f732a2f80e7 (diff) | |
download | FreeBSD-src-a14d555c873398b14776ca4f2c33f9c69617afb9.zip FreeBSD-src-a14d555c873398b14776ca4f2c33f9c69617afb9.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'usr.bin/file/compress.c')
-rw-r--r-- | usr.bin/file/compress.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/file/compress.c b/usr.bin/file/compress.c index a665306..1c0d824 100644 --- a/usr.bin/file/compress.c +++ b/usr.bin/file/compress.c @@ -2,9 +2,9 @@ * compress routines: * zmagic() - returns 0 if not recognized, uncompresses and prints * information if recognized - * uncompress(method, old, n, newch) - uncompress old into new, + * uncompress(method, old, n, newch) - uncompress old into new, * using method, return sizeof new - * $Id: compress.c,v 1.8 1994/01/21 01:38:24 christos Exp $ + * $Id: compress.c,v 1.1.1.1 1994/09/03 19:16:22 csgr Exp $ */ #include <stdio.h> #include <stdlib.h> @@ -22,7 +22,7 @@ static struct { } compr[] = { { "\037\235", 2, { "uncompress", "-c", NULL }, 0 }, { "\037\213", 2, { "gzip", "-dq", NULL }, 1 }, - /* + /* * XXX pcat does not work, cause I don't know how to make it read stdin, * so we use gzip */ @@ -74,7 +74,7 @@ int n; int fdin[2], fdout[2]; if (pipe(fdin) == -1 || pipe(fdout) == -1) { - error("cannot create pipe (%s).\n", strerror(errno)); + error("cannot create pipe (%s).\n", strerror(errno)); /*NOTREACHED*/ } switch (fork()) { @@ -92,7 +92,7 @@ int n; (void) close(2); execvp(compr[method].argv[0], compr[method].argv); - error("could not execute `%s' (%s).\n", + error("could not execute `%s' (%s).\n", compr[method].argv[0], strerror(errno)); /*NOTREACHED*/ case -1: |