summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/compat.c
diff options
context:
space:
mode:
authorharti <harti@FreeBSD.org>2005-02-04 12:38:57 +0000
committerharti <harti@FreeBSD.org>2005-02-04 12:38:57 +0000
commit92c06224cb023daaa051bf8e1d9623a8103ab127 (patch)
tree9f328f2c109b19bb6758b3caa82905c3e6085b9d /usr.bin/make/compat.c
parent4a76daab987176b978720f150b70d01937946579 (diff)
downloadFreeBSD-src-92c06224cb023daaa051bf8e1d9623a8103ab127.zip
FreeBSD-src-92c06224cb023daaa051bf8e1d9623a8103ab127.tar.gz
General whitespace cleanup: remove mixes of tabs and spaces, remove
space after function names, remove spaces on emtpy lines. Submitted by: Max Okumoto <okumoto@ucsd.edu>
Diffstat (limited to 'usr.bin/make/compat.c')
-rw-r--r--usr.bin/make/compat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c
index a464447..b7609ed 100644
--- a/usr.bin/make/compat.c
+++ b/usr.bin/make/compat.c
@@ -138,7 +138,7 @@ CompatCatchSig(int signo)
*-----------------------------------------------------------------------
*/
static void
-CompatInterrupt (int signo)
+CompatInterrupt(int signo)
{
GNode *gn;
sigset_t nmask, omask;
@@ -269,7 +269,7 @@ Compat_RunCommand(void *cmdp, void *gnp)
} else {
cmd = cmdStart;
}
- Lst_Replace (cmdNode, cmdStart);
+ Lst_Replace(cmdNode, cmdStart);
if ((gn->type & OP_SAVE_CMDS) && (gn != ENDNode)) {
Lst_AtEnd(&ENDNode->commands, cmdStart);
@@ -374,7 +374,7 @@ Compat_RunCommand(void *cmdp, void *gnp)
}
if (cpid == 0) {
execvp(av[0], av);
- write(STDERR_FILENO, av[0], strlen (av[0]));
+ write(STDERR_FILENO, av[0], strlen(av[0]));
write(STDERR_FILENO, ":", 1);
write(STDERR_FILENO, strerror(errno), strlen(strerror(errno)));
write(STDERR_FILENO, "\n", 1);
OpenPOWER on IntegriCloud