summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/xine-engine/configfile.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c
index 77538d71e..bc90cbe8f 100644
--- a/src/xine-engine/configfile.c
+++ b/src/xine-engine/configfile.c
@@ -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: configfile.c,v 1.15 2002/01/13 21:15:48 jcdutton Exp $
+ * $Id: configfile.c,v 1.16 2002/01/13 21:21:05 jcdutton Exp $
*
* config file management - implementation
*
@@ -567,7 +567,7 @@ config_values_t *config_file_init (char *filename) {
this->first = NULL;
this->last = NULL;
- config_file_read (&this, filename);
+ config_file_read (this, filename);
} else {
printf ("configfile: could not allocate config object\n");
@@ -592,6 +592,9 @@ config_values_t *config_file_init (char *filename) {
/*
* $Log: configfile.c,v $
+ * Revision 1.16 2002/01/13 21:21:05 jcdutton
+ * Undo last change.
+ *
* Revision 1.15 2002/01/13 21:15:48 jcdutton
* Fix a few compile warnings.
*