Module Name: src
Committed By: christos
Date: Tue Oct 8 19:21:40 UTC 2019
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
remore error(1) comment
To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/lib/libedit/filecomplete.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libedit/filecomplete.c
diff -u src/lib/libedit/filecomplete.c:1.59 src/lib/libedit/filecomplete.c:1.60
--- src/lib/libedit/filecomplete.c:1.59 Tue Oct 8 15:17:57 2019
+++ src/lib/libedit/filecomplete.c Tue Oct 8 15:21:40 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: filecomplete.c,v 1.59 2019/10/08 19:17:57 christos Exp $ */
+/* $NetBSD: filecomplete.c,v 1.60 2019/10/08 19:21:40 christos Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
#include "config.h"
#if !defined(lint) && !defined(SCCSID)
-__RCSID("$NetBSD: filecomplete.c,v 1.59 2019/10/08 19:17:57 christos Exp $");
+__RCSID("$NetBSD: filecomplete.c,v 1.60 2019/10/08 19:21:40 christos Exp $");
#endif /* not lint && not SCCSID */
#include <sys/types.h>
@@ -462,7 +462,6 @@ out:
*/
char ** completion_matches(const char *, char *(*)(const char *, int));
char **
-/*###467 [lint] completion_matches arg 1 declared inconsistently (pointer to const char != pointer to char) filecomplete.c(467) :: readline.c?(53)%%%*/
completion_matches(const char *text, char *(*genfunc)(const char *, int))
{
char **match_list = NULL, *retstr, *prevstr;