Skip to content
Snippets Groups Projects
Commit 0235b1bf authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard
Browse files

winebuild: Cast-qual warnings fix.

parent 0e592aa9
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,7 @@ static void get_string( struct string_id *str )
}
else
{
char *p = xmalloc( (strlen((char*)file_pos) + 1) );
char *p = xmalloc(strlen((const char *)file_pos) + 1);
str->str = p;
str->id = 0;
while ((*p++ = get_byte()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment