diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-01-13 23:08:27 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-01-13 23:08:27 +0000 |
commit | d22f98cc9380caedf0020b0f8ea5c40bb992f82a (patch) | |
tree | d9258d392902864c2b4b2764094f336b0be05aa3 | |
parent | 4c7ea33cb24a219650af6c2a27834f75135ced36 (diff) | |
download | xine-lib-d22f98cc9380caedf0020b0f8ea5c40bb992f82a.tar.gz xine-lib-d22f98cc9380caedf0020b0f8ea5c40bb992f82a.tar.bz2 |
Fix another compiler warning.
CVS patchset: 1400
CVS date: 2002/01/13 23:08:27
-rw-r--r-- | src/xine-engine/configfile.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c index bc90cbe8f..f8348157f 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.16 2002/01/13 21:21:05 jcdutton Exp $ + * $Id: configfile.c,v 1.17 2002/01/13 23:08:27 jcdutton Exp $ * * config file management - implementation * @@ -559,7 +559,9 @@ static void config_file_read (config_values_t *this, char *filename){ config_values_t *config_file_init (char *filename) { +#ifdef HAVE_IRIXAL volatile /* is this a (old, 2.91.66) irix gcc bug?!? */ +#endif config_values_t *this; if ( (this = xine_xmalloc(sizeof(config_values_t))) ) { @@ -592,6 +594,9 @@ config_values_t *config_file_init (char *filename) { /* * $Log: configfile.c,v $ + * Revision 1.17 2002/01/13 23:08:27 jcdutton + * Fix another compiler warning. + * * Revision 1.16 2002/01/13 21:21:05 jcdutton * Undo last change. * |