MFC (by stefanf):

| Log:
| El_parse's third parameter is now const-qualified, add a cast.
|
| Revision  Changes    Path
| 1.27      +1 -1      src/bin/sh/histedit.c

Approved by:	re (scottl)
This commit is contained in:
delphij 2005-10-09 03:46:26 +00:00
parent 7c007a1069
commit 52502943e5

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