Commit 4f995bd6 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

gcc 4.0 warning fix.

parent c14dbc5c
......@@ -920,8 +920,9 @@ static void dump_msgtable_data( const void *ptr, unsigned int size, unsigned int
}
else
{
const char *str = (const char *) entry->Text;
printf( "%s%08x \"", prefix, j );
dump_strA( entry->Text, strlen(entry->Text) );
dump_strA( entry->Text, strlen(str) );
printf( "\"\n" );
}
entry = (const MESSAGE_RESOURCE_ENTRY *)((const char *)entry + entry->Length);
......
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