summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2019-10-08 19:21:40 +0000
committerchristos <christos@NetBSD.org>2019-10-08 19:21:40 +0000
commitcc332e2d0df3dc951e2e7dd7c5d1e1f46bf46caa (patch)
tree73b25b1dbc9289c356119893c31cef6db4a02a4e /lib
parentbe9e48beab790e670e2c854c32e90a7d06f9cc26 (diff)
remore error(1) comment
Diffstat (limited to 'lib')
-rw-r--r--lib/libedit/filecomplete.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libedit/filecomplete.c b/lib/libedit/filecomplete.c
index 24ef9973dc5..ee5bdc6be89 100644
--- a/lib/libedit/filecomplete.c
+++ b/lib/libedit/filecomplete.c
@@ -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;