fix warnings exposed by MSVC

This commit is contained in:
Josh Coalson 2004-07-23 05:13:43 +00:00
parent 8eb486a53e
commit 63945ecad5
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ typedef struct FLAC__FileEncoderPrivate {
char *filename;
FLAC__uint64 bytes_written;
FLAC__uint64 samples_written;
FLAC__uint64 frames_written;
unsigned frames_written;
unsigned total_frames_estimate;
FLAC__SeekableStreamEncoder *seekable_stream_encoder;
FILE *file;

View File

@ -70,7 +70,7 @@ typedef struct OggFLAC__FileEncoderPrivate {
char *filename;
FLAC__uint64 bytes_written;
FLAC__uint64 samples_written;
FLAC__uint64 frames_written;
unsigned frames_written;
unsigned total_frames_estimate;
OggFLAC__SeekableStreamEncoder *seekable_stream_encoder;
FILE *file;