Module Name:    src
Committed By:   rillig
Date:           Sun Aug 30 21:20:06 UTC 2020

Modified Files:
        src/usr.bin/make: lst.c

Log Message:
make(1): fix comment for Lst_Destroy


To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 src/usr.bin/make/lst.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/lst.c
diff -u src/usr.bin/make/lst.c:1.58 src/usr.bin/make/lst.c:1.59
--- src/usr.bin/make/lst.c:1.58	Sun Aug 30 11:15:05 2020
+++ src/usr.bin/make/lst.c	Sun Aug 30 21:20:06 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: lst.c,v 1.58 2020/08/30 11:15:05 rillig Exp $ */
+/* $NetBSD: lst.c,v 1.59 2020/08/30 21:20:06 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -37,11 +37,11 @@
 #include "make.h"
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: lst.c,v 1.58 2020/08/30 11:15:05 rillig Exp $";
+static char rcsid[] = "$NetBSD: lst.c,v 1.59 2020/08/30 21:20:06 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: lst.c,v 1.58 2020/08/30 11:15:05 rillig Exp $");
+__RCSID("$NetBSD: lst.c,v 1.59 2020/08/30 21:20:06 rillig Exp $");
 #endif /* not lint */
 #endif
 
@@ -147,8 +147,8 @@ Lst_Free(Lst list)
     free(list);
 }
 
-/* Destroy a list and free all its resources. If the freeProc is given, it is
- * called with the datum from each node in turn before the node is freed. */
+/* Destroy a list and free all its resources. The freeProc is called with the
+ * datum from each node in turn before the node is freed. */
 void
 Lst_Destroy(Lst list, LstFreeProc freeProc)
 {

Reply via email to