From 0f8d1315f5f50f1e499c78b4f31452ea7668e04c Mon Sep 17 00:00:00 2001 From: stefanf Date: Thu, 11 Aug 2005 20:28:26 +0000 Subject: El_parse's third parameter is now const-qualified, add a cast. --- bin/sh/histedit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c index 7e05232..4d7793b 100644 --- a/bin/sh/histedit.c +++ b/bin/sh/histedit.c @@ -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 -- cgit v1.1