Fix the format string in a log message

The compiler warned about unknown conversion type and too many
arguments for the format.
This commit is contained in:
Martin Storsjö 2014-05-12 12:13:24 +03:00
parent 758e89208e
commit a4e1639529

View File

@ -120,7 +120,7 @@ int32_t ParamValidation (SWelsSvcCodingParam* pCfg) {
iTotalBitrate += fDlp->iSpatialBitrate;
}
if(iTotalBitrate > pCfg->iTargetBitrate){
WelsLog(NULL, WELS_LOG_ERROR,"Invalid setttings in bitrate. the sum of each layer bitrate(%) is larger than total bitrate setting(%d)\n",
WelsLog(NULL, WELS_LOG_ERROR,"Invalid setttings in bitrate. the sum of each layer bitrate(%d) is larger than total bitrate setting(%d)\n",
iTotalBitrate,pCfg->iTargetBitrate);
}
}