[xiph-commits] r17532 - trunk/Tremor

tterribe at svn.xiph.org tterribe at svn.xiph.org
Wed Oct 13 18:45:30 PDT 2010


Author: tterribe
Date: 2010-10-13 18:45:30 -0700 (Wed, 13 Oct 2010)
New Revision: 17532

Modified:
   trunk/Tremor/iseeking_example.c
Log:
Fix iseeking_example #includes.

Unless you're using the autotools build system, <vorbis/...> doesn't exist, and
 could pull out-of-date system headers anyway.
ivorbisfile_example had the same problem, but that fix was accidentally
 included in r17526.


Modified: trunk/Tremor/iseeking_example.c
===================================================================
--- trunk/Tremor/iseeking_example.c	2010-10-14 01:40:12 UTC (rev 17531)
+++ trunk/Tremor/iseeking_example.c	2010-10-14 01:45:30 UTC (rev 17532)
@@ -18,8 +18,8 @@
 
 #include <stdlib.h>
 #include <stdio.h>
-#include <vorbis/ivorbiscodec.h>
-#include <vorbis/ivorbisfile.h>
+#include "ivorbiscodec.h"
+#include "ivorbisfile.h"
 
 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */
 # include <io.h>



More information about the commits mailing list