Commit d3229eb9 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

hhctrl.ocx: Constify some variables.

parent 327acfa3
......@@ -1895,8 +1895,8 @@ static char find_html_symbol(const char *entity, int entity_len)
*/
WCHAR *decode_html(const char *html_fragment, int html_fragment_len, UINT code_page)
{
const char *h = html_fragment;
char *amp, *sem, symbol, *tmp;
const char *h = html_fragment, *amp, *sem;
char symbol, *tmp;
int len, tmp_len = 0;
WCHAR *unicode_text;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment