summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Terriberry <tterribe@xiph.org>2010-10-14 01:45:30 +0000
committerTim Terriberry <tterribe@xiph.org>2010-10-14 01:45:30 +0000
commit44ac4c42ff8e41edac31351eb1b694c889357baf (patch)
tree58e606cc9038c1f37e0b53916c9177cc662f11da
parentef2706e74d56091ba18bb111448be35ba342a94b (diff)
downloadtremor-44ac4c42ff8e41edac31351eb1b694c889357baf.tar.gz
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. git-svn-id: https://svn.xiph.org/trunk/Tremor@17532 0101bb08-14d6-0310-b084-bc0e0c8e3800
-rw-r--r--iseeking_example.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iseeking_example.c b/iseeking_example.c
index aaf0d39..533d7bd 100644
--- a/iseeking_example.c
+++ b/iseeking_example.c
@@ -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>