summaryrefslogtreecommitdiff
path: root/lib/libedit
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2015-11-02 22:21:02 +0000
committerBrooks Davis <brooks@FreeBSD.org>2015-11-02 22:21:02 +0000
commit942505ca1cee2dcd6d9f1409da7b1dc6e3b3c5f6 (patch)
tree3c8a5c0ccc54b3b762aad9934dc2a5859503a47b /lib/libedit
parentd1a6f62c458cfacb324af2c232a849f9be44a4be (diff)
downloadsrc-test-942505ca1cee2dcd6d9f1409da7b1dc6e3b3c5f6.tar.gz
src-test-942505ca1cee2dcd6d9f1409da7b1dc6e3b3c5f6.zip
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
Notes
Notes: svn path=/head/; revision=290298
Diffstat (limited to 'lib/libedit')
-rw-r--r--lib/libedit/eln.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libedit/eln.c b/lib/libedit/eln.c
index 013aa3e04093f..7ecdb3918a57c 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: {