From 5469e127e6f872f7a61f76ccda8d96e686eae7c4 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 7 Jun 2020 16:34:43 -0400 Subject: Replace __DECONST with regular casts sed -E 's/__DECONST[(]([^,]+), ([^)]+)[)]/(\1)(\2)/' --- bin/1sh/histedit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/1sh/histedit.c') diff --git a/bin/1sh/histedit.c b/bin/1sh/histedit.c index 437cb15c..e0bda06e 100644 --- a/bin/1sh/histedit.c +++ b/bin/1sh/histedit.c @@ -525,7 +525,7 @@ bindcmd(int argc, char **argv) el_get(el, EL_GETFP, 1, &old); el_set(el, EL_SETFP, 1, out); - ret = el_parse(el, argc, __DECONST(const char **, argv)); + ret = el_parse(el, argc, (const char **)(argv)); el_set(el, EL_SETFP, 1, old); -- cgit 1.4.1