minor comments

This commit is contained in:
Josh Coalson
2004-12-30 03:48:42 +00:00
parent 28306cc97e
commit 4926250883
6 changed files with 6 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ FLAC__bool grabbag__seektable_convert_specification_to_template(const char *spec
double sec = atof(pt);
if(sec > 0.0) {
#if defined _MSC_VER || defined __MINGW32__
/* with VC++ you have to spoon feed it the casting */
/* with MSVC you have to spoon feed it the casting */
unsigned n = (unsigned)((double)(FLAC__int64)total_samples_to_encode / (sec * (double)sample_rate));
#else
unsigned n = (unsigned)((double)total_samples_to_encode / (sec * (double)sample_rate));