Module: wine Branch: master Commit: b047b66a2bfec3c9d4c041ed2bb65a048615b328 URL: https://source.winehq.org/git/wine.git/?a=commit;h=b047b66a2bfec3c9d4c041ed2...
Author: Akihiro Sagawa sagawa.aki@gmail.com Date: Sat Jul 24 21:45:26 2021 +0900
include: Fix a typo in _tcsxfrm_l.
Signed-off-by: Akihiro Sagawa sagawa.aki@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/tchar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/tchar.h b/include/tchar.h index 1231edc565c..526565ee0b5 100644 --- a/include/tchar.h +++ b/include/tchar.h @@ -154,7 +154,7 @@ extern "C" { #define _tcsupr WINE_tchar_routine(_strupr, _mbsupr, _wcsupr) #define _tcsupr_s WINE_tchar_routine(_strupr_s, _mbsupr_s, _wcsupr_s) #define _tcsxfrm WINE_tchar_routine(strxfrm, strxfrm, wcsxfrm) -#define _tcsxfrm_l WINE_tchar_routine(_strxfrm_l, _strxfrm_l, _ wcsxfrm_l) +#define _tcsxfrm_l WINE_tchar_routine(_strxfrm_l, _strxfrm_l, _wcsxfrm_l) #define _tctime WINE_tchar_routine(ctime, ctime, _wctime) #define _tenviron WINE_tchar_routine(_environ, _environ, _wenviron) #define _texecl WINE_tchar_routine(execl, _execl, _wexecl)