diff dvdnav.c @ 17:a68c6da98b73 src

Actually fix the const this time!
author jcdutton
date Wed, 10 Apr 2002 16:45:57 +0000
parents 66708b4a1b5e
children d2d73f2ad8d3
line wrap: on
line diff
--- a/dvdnav.c	Wed Apr 10 16:40:52 2002 +0000
+++ b/dvdnav.c	Wed Apr 10 16:45:57 2002 +0000
@@ -82,7 +82,7 @@
   return S_OK;
 }
 
-dvdnav_status_t dvdnav_open(dvdnav_t** dest, const char *path) {
+dvdnav_status_t dvdnav_open(dvdnav_t** dest, char *path) {
   dvdnav_t *self;
   
   /* Create a new structure */
@@ -988,6 +988,9 @@
 
 /*
  * $Log$
+ * Revision 1.7  2002/04/10 16:45:57  jcdutton
+ * Actually fix the const this time!
+ *
  * Revision 1.6  2002/04/07 14:10:11  richwareham
  * Stop C++ bitching about some things and extend the menus example
  *