Module Name:    src
Committed By:   christos
Date:           Sun Sep 26 13:45:54 UTC 2021

Modified Files:
        src/lib/libedit: filecomplete.h

Log Message:
make flag unsigned to match prototype of the function used


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/lib/libedit/filecomplete.h

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.h
diff -u src/lib/libedit/filecomplete.h:1.13 src/lib/libedit/filecomplete.h:1.14
--- src/lib/libedit/filecomplete.h:1.13	Sun Mar 28 09:38:10 2021
+++ src/lib/libedit/filecomplete.h	Sun Sep 26 09:45:54 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: filecomplete.h,v 1.13 2021/03/28 13:38:10 christos Exp $	*/
+/*	$NetBSD: filecomplete.h,v 1.14 2021/09/26 13:45:54 christos Exp $	*/
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@ int fn_complete2(EditLine *,
     char **(*)(const char *, int, int),
     const wchar_t *, const wchar_t *, const char *(*)(const char *), size_t,
     int *, int *, int *, int *, unsigned int);
-#define FN_QUOTE_MATCH 1		/* Quote the returned match */
+#define FN_QUOTE_MATCH 1U		/* Quote the returned match */
 
 void fn_display_match_list(EditLine *, char **, size_t, size_t,
 	const char *(*)(const char *));

Reply via email to