diff options
| author | Richard Linden <none@none> | 2012-02-01 13:03:46 -0800 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2012-02-01 13:03:46 -0800 | 
| commit | 5a14a67e060e7f325025e924c83489cfa236e3dc (patch) | |
| tree | 2ba0a3d0c746a5f0322f9749e57920784e949ce6 /indra/llaudio | |
| parent | b3960899066156bc7d3fd5befb2f7e687a328152 (diff) | |
converted a bunch of narrowing implicit conversions to explicit
Diffstat (limited to 'indra/llaudio')
| -rw-r--r-- | indra/llaudio/llaudiodecodemgr.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llaudio/llaudiodecodemgr.cpp b/indra/llaudio/llaudiodecodemgr.cpp index f0b44f97d2..7f747c2eca 100644 --- a/indra/llaudio/llaudiodecodemgr.cpp +++ b/indra/llaudio/llaudiodecodemgr.cpp @@ -215,7 +215,7 @@ BOOL LLVorbisDecodeState::initDecode()  		return(FALSE);  	} -	S32 sample_count = ov_pcm_total(&mVF, -1); +	S32 sample_count = (S32)ov_pcm_total(&mVF, -1);  	size_t size_guess = (size_t)sample_count;  	vorbis_info* vi = ov_info(&mVF, -1);  	size_guess *= (vi? vi->channels : 1); | 
