Merge pull request #224 from mstorsjo/msvc2005

Fix building on MSVC 2005
This commit is contained in:
volvet 2014-01-26 17:51:44 -08:00
commit 5ac52e31e9

View File

@ -178,7 +178,8 @@ int32_t WelsFclose (WelsFileHandle* pFp) {
}
int32_t WelsGetTimeOfDay (SWelsTime* pTp) {
return _ftime (pTp);
_ftime (pTp);
return 0;
}
int32_t WelsStrftime (str_t* pBuffer, int32_t iSize, const str_t* kpFormat, const SWelsTime* kpTp) {