ntdll: Print the correct debug string and not a random global variable.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
727168a9e1
commit
cdf1b61a47
|
@ -3533,7 +3533,7 @@ static struct string_index *find_string_index(const struct strsection_header *se
|
|||
break;
|
||||
}
|
||||
else
|
||||
WARN("hash collision 0x%08x, %s, %s\n", hash, debugstr_us(name), debugstr_w(nameW));
|
||||
WARN("hash collision 0x%08x, %s, %s\n", hash, debugstr_us(name), debugstr_us(&str));
|
||||
}
|
||||
iter++;
|
||||
}
|
||||
|
@ -3794,7 +3794,7 @@ static NTSTATUS find_window_class(ACTIVATION_CONTEXT* actctx, const UNICODE_STRI
|
|||
break;
|
||||
}
|
||||
else
|
||||
WARN("hash collision 0x%08x, %s, %s\n", hash, debugstr_us(name), debugstr_w(nameW));
|
||||
WARN("hash collision 0x%08x, %s, %s\n", hash, debugstr_us(name), debugstr_us(&str));
|
||||
}
|
||||
iter++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue