summaryrefslogtreecommitdiffstats
path: root/contrib/less/prompt.c
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2012-01-01 20:09:05 +0000
committerdim <dim@FreeBSD.org>2012-01-01 20:09:05 +0000
commit46cdaf90c3e6a08ea00152956ec665dd2326a247 (patch)
tree54ccebf99257d3835bf0732b07adee84c4c0abe6 /contrib/less/prompt.c
parentc3ff56243b9d716e74544bef440aa812f115faed (diff)
downloadFreeBSD-src-46cdaf90c3e6a08ea00152956ec665dd2326a247.zip
FreeBSD-src-46cdaf90c3e6a08ea00152956ec665dd2326a247.tar.gz
Revert r228645, which casts away a number of const conversion warnings
in contrib/less. I will fix those more properly in the next commit.
Diffstat (limited to 'contrib/less/prompt.c')
-rw-r--r--contrib/less/prompt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/less/prompt.c b/contrib/less/prompt.c
index 00d3152..daad00d 100644
--- a/contrib/less/prompt.c
+++ b/contrib/less/prompt.c
@@ -555,7 +555,7 @@ pr_expand(proto, maxwidth)
public char *
eq_message()
{
- return (pr_expand((char*)eqproto, 0));
+ return (pr_expand(eqproto, 0));
}
/*
@@ -572,7 +572,7 @@ pr_string()
type = (!less_is_more) ? pr_type : pr_type ? 0 : 1;
prompt = pr_expand((ch_getflags() & CH_HELPFILE) ?
- (char*)hproto : prproto[type],
+ hproto : prproto[type],
sc_width-so_s_width-so_e_width-2);
new_file = 0;
return (prompt);
@@ -584,5 +584,5 @@ pr_string()
public char *
wait_message()
{
- return (pr_expand((char*)wproto, sc_width-so_s_width-so_e_width-2));
+ return (pr_expand(wproto, sc_width-so_s_width-so_e_width-2));
}
OpenPOWER on IntegriCloud