mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msvcrt: void functions should not return a value.
This commit is contained in:
parent
e7064e08ac
commit
fb3b28f013
2 changed files with 3 additions and 3 deletions
|
@ -139,7 +139,7 @@ static void DoMessageBox(const char *lead, const char *message)
|
|||
MSVCRT_mbstowcs(leadW, lead, 1024);
|
||||
MSVCRT_mbstowcs(messageW, message, 1024);
|
||||
|
||||
return DoMessageBoxW(leadW, messageW);
|
||||
DoMessageBoxW(leadW, messageW);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
|
|
@ -655,12 +655,12 @@ int CDECL MSVCRT__ftime32_s(struct MSVCRT___timeb32 *buf)
|
|||
#ifdef _WIN64
|
||||
void CDECL MSVCRT__ftime(struct MSVCRT___timeb64 *buf)
|
||||
{
|
||||
return MSVCRT__ftime64( buf );
|
||||
MSVCRT__ftime64( buf );
|
||||
}
|
||||
#else
|
||||
void CDECL MSVCRT__ftime(struct MSVCRT___timeb32 *buf)
|
||||
{
|
||||
return MSVCRT__ftime32( buf );
|
||||
MSVCRT__ftime32( buf );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue