Fix editing mistake, remove ) from func call that is now gone.

This commit is contained in:
kre 2018-09-13 09:03:40 +00:00
parent b0043626fa
commit b8b0289d66
1 changed files with 3 additions and 3 deletions

View File

@ -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 @@ history_load(TYPE(History) *h, const char *fname)
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;
}