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/lstOpen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/make/lst.lib/lstOpen.c') diff --git a/usr.bin/make/lst.lib/lstOpen.c b/usr.bin/make/lst.lib/lstOpen.c index 11559ab..06ba566 100644 --- a/usr.bin/make/lst.lib/lstOpen.c +++ b/usr.bin/make/lst.lib/lstOpen.c @@ -73,11 +73,11 @@ ReturnStatus Lst_Open(Lst l) { - if (Lst_Valid (l) == FALSE) { + if (Lst_Valid(l) == FALSE) { return (FAILURE); } l->isOpen = TRUE; - l->atEnd = Lst_IsEmpty (l) ? LstHead : LstUnknown; + l->atEnd = Lst_IsEmpty(l) ? LstHead : LstUnknown; l->curPtr = NULL; return (SUCCESS); -- cgit v1.1