summaryrefslogtreecommitdiff
path: root/examples/vorbisfile_example.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/vorbisfile_example.c')
-rw-r--r--examples/vorbisfile_example.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/vorbisfile_example.c b/examples/vorbisfile_example.c
index c57fcb49..d15bc4cb 100644
--- a/examples/vorbisfile_example.c
+++ b/examples/vorbisfile_example.c
@@ -37,7 +37,7 @@ int main(){
int current_section;
#ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */
- /* Beware the evil ifdef. We avoid these where we can, but this one we
+ /* Beware the evil ifdef. We avoid these where we can, but this one we
cannot. Don't add any more, you'll probably go to hell if you do. */
_setmode( _fileno( stdin ), _O_BINARY );
_setmode( _fileno( stdout ), _O_BINARY );
@@ -62,7 +62,7 @@ int main(){
(long)ov_pcm_total(&vf,-1));
fprintf(stderr,"Encoded by: %s\n\n",ov_comment(&vf,-1)->vendor);
}
-
+
while(!eof){
long ret=ov_read(&vf,pcmout,sizeof(pcmout),0,2,1,&current_section);
if (ret == 0) {
@@ -85,7 +85,7 @@ int main(){
/* cleanup */
ov_clear(&vf);
-
+
fprintf(stderr,"Done.\n");
return(0);
}