Module: wine Branch: master Commit: b007ee923498c55a1a06b5fcd22a2a822dc70c83 URL: https://gitlab.winehq.org/wine/wine/-/commit/b007ee923498c55a1a06b5fcd22a2a8...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Thu Sep 1 13:13:37 2022 +0300
msvcrt: Remove mention of obsolete libwine function.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com
---
dlls/msvcrt/wcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msvcrt/wcs.c b/dlls/msvcrt/wcs.c index 6942ecf3534..971c04c0f6c 100644 --- a/dlls/msvcrt/wcs.c +++ b/dlls/msvcrt/wcs.c @@ -2519,7 +2519,7 @@ static int wctoint(WCHAR c, int base) else if ('a' <= c && c <= 'z') v = c - 'a' + 10; else { - /* NOTE: wine_fold_string(MAP_FOLDDIGITS) supports too many things. */ + /* NOTE: MAP_FOLDDIGITS supports too many things. */ /* Unicode points that contain digits 0-9; keep this sorted! */ static const WCHAR zeros[] = { 0x660, 0x6f0, 0x966, 0x9e6, 0xa66, 0xae6, 0xb66, 0xc66, 0xce6,