El_parse's third parameter is now const-qualified, add a cast.

This commit is contained in:
Stefan Farfeleder 2005-08-11 20:28:26 +00:00
parent 50e0a2684e
commit 7bdc89d779
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148974

View File

@ -481,7 +481,7 @@ bindcmd(int argc, char **argv)
if (el == NULL)
error("line editing is disabled");
return (el_parse(el, argc, argv));
return (el_parse(el, argc, (const char **)argv));
}
#else