From 942505ca1cee2dcd6d9f1409da7b1dc6e3b3c5f6 Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Mon, 2 Nov 2015 22:21:02 +0000 Subject: [PATCH] The ops EL_SIGNAL, EL_EDITMODE, EL_UNBUFFERED, and EL_PREP_TERM all take an int, not an int*. Sponsored by: DARPA, AFRL Discovered with: CHERI Differential Revision: https://reviews.freebsd.org/D4071 --- lib/libedit/eln.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libedit/eln.c b/lib/libedit/eln.c index 013aa3e04093..7ecdb3918a57 100644 --- a/lib/libedit/eln.c +++ b/lib/libedit/eln.c @@ -325,11 +325,11 @@ el_get(EditLine *el, int op, ...) ret = el_wget(el, op, va_arg(ap, const char **)); break; - case EL_SIGNAL: /* int * */ + case EL_SIGNAL: /* int */ case EL_EDITMODE: case EL_UNBUFFERED: case EL_PREP_TERM: - ret = el_wget(el, op, va_arg(ap, int *)); + ret = el_wget(el, op, va_arg(ap, int)); break; case EL_GETTC: {