kernelbase: Fix an ASCII / ANSI mixup in a comment.

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-24 10:15:18 +02:00 committed by Alexandre Julliard
parent 2ee1399786
commit d10fe185ff
1 changed files with 2 additions and 2 deletions

View File

@ -1651,7 +1651,7 @@ LSTATUS WINAPI DECLSPEC_HOTPATCH RegQueryValueExA( HKEY hkey, LPCSTR name, LPDWO
if (status && status != STATUS_BUFFER_OVERFLOW) goto done;
/* we need to fetch the contents for a string type even if not requested,
* because we need to compute the length of the ASCII string. */
* because we need to compute the length of the ANSI string. */
if (data || is_string(info->Type))
{
/* retry with a dynamically allocated buffer */
@ -2106,7 +2106,7 @@ LSTATUS WINAPI RegEnumValueA( HKEY hkey, DWORD index, LPSTR value, LPDWORD val_c
buffer, total_size, &total_size );
/* we need to fetch the contents for a string type even if not requested,
* because we need to compute the length of the ASCII string. */
* because we need to compute the length of the ANSI string. */
/* retry with a dynamically allocated buffer */
while (status == STATUS_BUFFER_OVERFLOW)