Commit c0198a65 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

dpnet: Fix an ASCII / ANSI mixup in a warning message.

parent 2eb4b19f
......@@ -500,7 +500,7 @@ static HRESULT WINAPI IDirectPlay8AddressImpl_AddComponent(IDirectPlay8Address *
case DPNA_DATATYPE_STRING_ANSI:
if ((strlen((const CHAR*)lpvData)+1) != dwDataSize)
{
WARN("Invalid ASCII size, returning DPNERR_INVALIDPARAM\n");
WARN("Invalid ANSI size, returning DPNERR_INVALIDPARAM\n");
return DPNERR_INVALIDPARAM;
}
break;
......
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