user32/tests: Fix ASCII / ANSI mixups in dde comments.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-08-26 13:13:47 +02:00 committed by Alexandre Julliard
parent 2d52e16f2a
commit fa18bc5660

View file

@ -2438,7 +2438,7 @@ static HDDEDATA CALLBACK server_end_to_end_callback(UINT uType, UINT uFmt, HCONV
test_cmd_w_to_a, sizeof(test_cmd_w_to_a), NULL, NULL );
switch (str_index)
{
case 0: /* ASCII string */
case 0: /* ANSI string */
if (unicode_server)
{
ok(size == size_a_to_w, "Wrong size %d/%d, msg_index=%d\n", size, size_a_to_w, msg_index);
@ -2447,7 +2447,7 @@ static HDDEDATA CALLBACK server_end_to_end_callback(UINT uType, UINT uFmt, HCONV
}
else if (unicode_client)
{
/* ASCII string mapped W->A -> garbage */
/* ANSI string mapped W->A -> garbage */
}
else
{