diff options
author | harti <harti@FreeBSD.org> | 2005-02-04 12:38:57 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2005-02-04 12:38:57 +0000 |
commit | 92c06224cb023daaa051bf8e1d9623a8103ab127 (patch) | |
tree | 9f328f2c109b19bb6758b3caa82905c3e6085b9d /usr.bin/make/targ.c | |
parent | 4a76daab987176b978720f150b70d01937946579 (diff) | |
download | FreeBSD-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/targ.c')
-rw-r--r-- | usr.bin/make/targ.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index 689b54f..810a613 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -194,7 +194,7 @@ Targ_FindNode(const char *name, int flags) he = Hash_CreateEntry(&targets, name, &isNew); if (isNew) { gn = Targ_NewGN(name); - Hash_SetValue (he, gn); + Hash_SetValue(he, gn); Lst_AtEnd(&allTargets, gn); } } else { @@ -392,7 +392,7 @@ Targ_FmtTime(time_t modtime) parts = localtime(&modtime); - strftime(buf, sizeof buf, "%H:%M:%S %b %d, %Y", parts); + strftime(buf, sizeof(buf), "%H:%M:%S %b %d, %Y", parts); buf[sizeof(buf) - 1] = '\0'; return (buf); } |