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

Alexandre Julliard julliard at winehq.org
Tue Aug 24 15:56:11 CDT 2021


Module: wine
Branch: master
Commit: c0198a65615ae87ad6f4a5a80f8c86741364d221
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=c0198a65615ae87ad6f4a5a80f8c86741364d221

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Aug 24 10:24:51 2021 +0200

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

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dpnet/address.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dpnet/address.c b/dlls/dpnet/address.c
index 6aa62a97785..b616d221b38 100644
--- a/dlls/dpnet/address.c
+++ b/dlls/dpnet/address.c
@@ -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;




More information about the wine-cvs mailing list