summaryrefslogtreecommitdiff
path: root/src/xine-engine/configfile.c
diff options
context:
space:
mode:
authorMatthias Hopf <mat@mshopf.de>2002-01-09 15:16:37 +0000
committerMatthias Hopf <mat@mshopf.de>2002-01-09 15:16:37 +0000
commit3135c54e9a68fb6396c39027bac0d8be5cf794d6 (patch)
tree9000bbf96e53096a25b8b2a75351a7e98e4b8248 /src/xine-engine/configfile.c
parentd6ec86729a295f2726e9293ed76d7ea16bd58742 (diff)
downloadxine-lib-3135c54e9a68fb6396c39027bac0d8be5cf794d6.tar.gz
xine-lib-3135c54e9a68fb6396c39027bac0d8be5cf794d6.tar.bz2
IRIX port finally compiles (and actually works) again.
CVS patchset: 1379 CVS date: 2002/01/09 15:16:37
Diffstat (limited to 'src/xine-engine/configfile.c')
-rw-r--r--src/xine-engine/configfile.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c
index 02e220733..d3652485e 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.13 2001/12/01 22:38:32 guenter Exp $
+ * $Id: configfile.c,v 1.14 2002/01/09 15:16:37 mshopf Exp $
*
* config file management - implementation
*
@@ -559,6 +559,7 @@ static void config_file_read (config_values_t *this, char *filename){
config_values_t *config_file_init (char *filename) {
+ volatile /* is this a (old, 2.91.66) irix gcc bug?!? */
config_values_t *this;
if ( (this = xine_xmalloc(sizeof(config_values_t))) ) {
@@ -567,7 +568,7 @@ config_values_t *config_file_init (char *filename) {
this->last = NULL;
config_file_read (this, filename);
-
+
} else {
printf ("configfile: could not allocate config object\n");
exit (1);
@@ -591,6 +592,9 @@ config_values_t *config_file_init (char *filename) {
/*
* $Log: configfile.c,v $
+ * Revision 1.14 2002/01/09 15:16:37 mshopf
+ * IRIX port finally compiles (and actually works) again.
+ *
* Revision 1.13 2001/12/01 22:38:32 guenter
* add avi subtitle decoder (based on mplayer code), minor cleanups, removed register_empty function from configfile (undocumented and doesn't make sense)
*