diff options
Diffstat (limited to 'src/xine-engine')
-rw-r--r-- | src/xine-engine/configfile.c | 7 | ||||
-rw-r--r-- | src/xine-engine/scratch.c | 3 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c index d3652485e..77538d71e 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.14 2002/01/09 15:16:37 mshopf Exp $ + * $Id: configfile.c,v 1.15 2002/01/13 21:15:48 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.15 2002/01/13 21:15:48 jcdutton + * Fix a few compile warnings. + * * Revision 1.14 2002/01/09 15:16:37 mshopf * IRIX port finally compiles (and actually works) again. * diff --git a/src/xine-engine/scratch.c b/src/xine-engine/scratch.c index cf869e507..364f85d09 100644 --- a/src/xine-engine/scratch.c +++ b/src/xine-engine/scratch.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: scratch.c,v 1.4 2001/12/11 23:59:00 f1rmb Exp $ + * $Id: scratch.c,v 1.5 2002/01/13 21:15:48 jcdutton Exp $ * * top-level xine functions * @@ -29,6 +29,7 @@ #include <stdio.h> #include <stdarg.h> +#include <string.h> /* For memset */ #include "scratch.h" #include "xineutils.h" |