From d20f42c230fb68129b8b8e55a32f4851f4eb48ba Mon Sep 17 00:00:00 2001 From: Bill Meltsner Date: Wed, 12 Oct 2011 14:41:25 -0500 Subject: [PATCH] this machine kills compiler warnings --- src/modules/sound/lullaby/VorbisDecoder.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/sound/lullaby/VorbisDecoder.cpp b/src/modules/sound/lullaby/VorbisDecoder.cpp index 074a8485d..cd6ff9d35 100644 --- a/src/modules/sound/lullaby/VorbisDecoder.cpp +++ b/src/modules/sound/lullaby/VorbisDecoder.cpp @@ -75,9 +75,9 @@ namespace lullaby ogg_int64_t offset /*offset from the point we wish to seek to*/, int whence /*where we want to seek to*/) { - size_t spaceToEOF; // How much more we can read till we hit the EOF marker - ogg_int64_t actualOffset; // How much we can actually offset it by - SOggFile* vorbisData; // The data we passed in (for the typecast) + int spaceToEOF; // How much more we can read till we hit the EOF marker + ogg_int64_t actualOffset; // How much we can actually offset it by + SOggFile* vorbisData; // The data we passed in (for the typecast) // Get the data in the right format vorbisData = (SOggFile*) datasource;