From b047b66a2bfec3c9d4c041ed2bb65a048615b328 Mon Sep 17 00:00:00 2001 From: Akihiro Sagawa Date: Sat, 24 Jul 2021 21:45:26 +0900 Subject: [PATCH] include: Fix a typo in _tcsxfrm_l. Signed-off-by: Akihiro Sagawa Signed-off-by: Alexandre Julliard --- 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)