Module: wine Branch: refs/heads/master Commit: 61512b202128041523ef64ceaafc954fdb7f7270 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=61512b202128041523ef64ce...
Author: Mikołaj Zalewski mikolaj@zalewski.pl Date: Thu Apr 13 10:21:51 2006 +0200
include: Fix a mistake in the declaration of _sntprintf.
---
include/tchar.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/tchar.h b/include/tchar.h index 9af9f0a..e220485 100644 --- a/include/tchar.h +++ b/include/tchar.h @@ -95,7 +95,7 @@ extern "C" { #define _puttc WINE_tchar_routine(putc, putc, putwc) #define _puttchar WINE_tchar_routine(putchar, putchar, putwchar) #define _putts WINE_tchar_routine(puts, puts, putws) -#define _sntprintf WINE_tchar_routine(sprintf, sprintf, swprintf) +#define _sntprintf WINE_tchar_routine(snprintf, snprintf, snwprintf) #define _stprintf WINE_tchar_routine(sprintf, sprintf, swprintf) #define _stscanf WINE_tchar_routine(sscanf, sscanf, swscanf) #define _taccess WINE_tchar_routine(access, _access, _waccess)