From ba6eb9dcb908ffe7a797968e8a9b7dff037333e4 Mon Sep 17 00:00:00 2001 From: harti Date: Tue, 30 Nov 2004 17:46:29 +0000 Subject: Stylification: missing spaces, extra space after function names, casts and the sizeof operator, missing empty lines, void casts, extra empty lines. Checked by: diff on make *.o lst.lib/*.o Submitted by: Max Okumoto (partly) --- usr.bin/make/lst.lib/lstAppend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/make/lst.lib/lstAppend.c') diff --git a/usr.bin/make/lst.lib/lstAppend.c b/usr.bin/make/lst.lib/lstAppend.c index 9ff3f86..f18cee4 100644 --- a/usr.bin/make/lst.lib/lstAppend.c +++ b/usr.bin/make/lst.lib/lstAppend.c @@ -75,11 +75,11 @@ Lst_Append(Lst list, LstNode ln, void *d) { LstNode nLNode; - if (Lst_Valid (list) && (ln == NULL && Lst_IsEmpty (list))) { + if (Lst_Valid(list) && (ln == NULL && Lst_IsEmpty(list))) { goto ok; } - if (!Lst_Valid (list) || Lst_IsEmpty (list) || ! Lst_NodeValid(ln, list)) { + if (!Lst_Valid(list) || Lst_IsEmpty(list) || ! Lst_NodeValid(ln, list)) { return (FAILURE); } ok: -- cgit v1.1