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/8f2539c7506d
branches:  trunk
changeset: 835846:8f2539c7506d
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 1bcf1e62de69 -r 8f2539c7506d 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