Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libedit Fix editing mistake, remove ) from func call tha...
details: https://anonhg.NetBSD.org/src/rev/1802aaccaf1f
branches: trunk
changeset: 993464:1802aaccaf1f
user: kre <kre%NetBSD.org@localhost>
date: Thu Sep 13 09:03:40 2018 +0000
description:
Fix editing mistake, remove ) from func call that is now gone.
diffstat:
lib/libedit/history.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 61b3a0ae373b -r 1802aaccaf1f lib/libedit/history.c
--- a/lib/libedit/history.c Thu Sep 13 08:25:55 2018 +0000
+++ b/lib/libedit/history.c Thu Sep 13 09:03:40 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: history.c,v 1.61 2018/09/13 01:26:33 christos Exp $ */
+/* $NetBSD: history.c,v 1.62 2018/09/13 09:03:40 kre Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)history.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: history.c,v 1.61 2018/09/13 01:26:33 christos Exp $");
+__RCSID("$NetBSD: history.c,v 1.62 2018/09/13 09:03:40 kre Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -811,7 +811,7 @@
decode_result = ct_decode_string(ptr, &conv);
if (decode_result == NULL)
continue;
- if (HENTER(h, &ev, decode_result)) == -1) {
+ if (HENTER(h, &ev, decode_result) == -1) {
i = -1;
goto oomem;
}
Home |
Main Index |
Thread Index |
Old Index