diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-01-02 18:16:07 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-01-02 18:16:07 +0000 |
commit | 11b26a83b403b3f3661aa59cfc5c3f2c1a7e1705 (patch) | |
tree | 1bb9fc098e4b2ba6e7d66a793b7491d057cdf2e8 /src/xine-utils/xineutils.h | |
parent | 671368008941ee43f9e541477eef8530ded71654 (diff) | |
download | xine-lib-11b26a83b403b3f3661aa59cfc5c3f2c1a7e1705.tar.gz xine-lib-11b26a83b403b3f3661aa59cfc5c3f2c1a7e1705.tar.bz2 |
Correct spelling of __VA_ARGS__ macro
CVS patchset: 1324
CVS date: 2002/01/02 18:16:07
Diffstat (limited to 'src/xine-utils/xineutils.h')
-rw-r--r-- | src/xine-utils/xineutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index 634cf0c74..fda43ad98 100644 --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.h @@ -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: xineutils.h,v 1.5 2001/12/05 15:12:03 guenter Exp $ + * $Id: xineutils.h,v 1.6 2002/01/02 18:16:08 jkeil Exp $ * */ #ifndef XINEUTILS_H @@ -549,7 +549,7 @@ void xine_probe_fast_memcpy(config_values_t *config); #define perr(...) {fprintf(stderr, __VA_ARGS__);fflush(stderr);} #endif -#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) || !defined(__GNUC__) #define xlerror(...) do { \ printf("XINE lib %s:%d:(%s) ", __FILE__, __LINE__, __XINE_FUNCTION__); \ printf(__VA_ARGS__); \ |