summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Keil <jkeil@users.sourceforge.net>2001-09-11 09:58:15 +0000
committerJuergen Keil <jkeil@users.sourceforge.net>2001-09-11 09:58:15 +0000
commitb7cd7617ab7ae0d1f53e9739e94afc529d9c46de (patch)
tree4d40959b712dc48767df8fc62282d618952319d7
parent817350ef29b32240d9b5d774674732ab5c19a521 (diff)
downloadxine-lib-b7cd7617ab7ae0d1f53e9739e94afc529d9c46de.tar.gz
xine-lib-b7cd7617ab7ae0d1f53e9739e94afc529d9c46de.tar.bz2
Fix compile error (does not find xine/buffer.h)
CVS patchset: 611 CVS date: 2001/09/11 09:58:15
-rw-r--r--src/input/read_cache.c4
-rw-r--r--src/input/read_cache.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/input/read_cache.c b/src/input/read_cache.c
index 60a139d53..406f8b44e 100644
--- a/src/input/read_cache.c
+++ b/src/input/read_cache.c
@@ -17,14 +17,14 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: read_cache.c,v 1.1 2001/09/11 00:57:11 guenter Exp $
+ * $Id: read_cache.c,v 1.2 2001/09/11 09:58:15 jkeil Exp $
*/
#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>
-#include <xine/utils.h>
+#include "utils.h"
#include "read_cache.h"
diff --git a/src/input/read_cache.h b/src/input/read_cache.h
index 7cd3da4ac..b993868fd 100644
--- a/src/input/read_cache.h
+++ b/src/input/read_cache.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: read_cache.h,v 1.1 2001/09/11 00:57:11 guenter Exp $
+ * $Id: read_cache.h,v 1.2 2001/09/11 09:58:15 jkeil Exp $
*/
#ifndef HAVE_READ_CACHE_H
@@ -25,7 +25,7 @@
#include <inttypes.h>
#include <sys/types.h>
-#include <xine/buffer.h>
+#include "buffer.h"
typedef struct read_cache_s read_cache_t;