Update of /cvsroot/dvd/libdvdnav/src
In directory sc8-pr-cvs1:/tmp/cvs-serv11787/src
Modified Files:
nav_read.c
Log Message:
kill one gcc warning
Index: nav_read.c
===================================================================
RCS file: /cvsroot/dvd/libdvdnav/src/nav_read.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nav_read.c 18 May 2003 19:55:39 -0000 1.6
+++ nav_read.c 7 Oct 2003 14:53:29 -0000 1.7
@@ -96,6 +96,8 @@
return result;
}
+#if 0 /* TODO: optimized versions not yet used */
+
/* WARNING: This function can only be used on a byte boundary.
No checks are made that we are in fact on a byte boundary.
*/
@@ -119,6 +121,8 @@
state->byte = state->start[state->byte_position];
return result;
}
+
+#endif
void navRead_PCI(pci_t *pci, unsigned char *buffer) {
int32_t i, j;
|