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-engine | |
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-engine')
-rw-r--r-- | src/xine-engine/load_plugins.c | 6 | ||||
-rw-r--r-- | src/xine-engine/metronom.c | 6 | ||||
-rw-r--r-- | src/xine-engine/video_out.c | 6 | ||||
-rw-r--r-- | src/xine-engine/xine.c | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 49f177af4..00bc05b43 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.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: load_plugins.c,v 1.63 2001/12/27 14:30:30 f1rmb Exp $ + * $Id: load_plugins.c,v 1.64 2002/01/02 18:16:07 jkeil Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -62,11 +62,11 @@ } #else #define LOG_MSG_STDERR(xine, ...) { \ - xine_log(xine, XINE_LOG_PLUGIN, __VAR_ARGS__); \ + xine_log(xine, XINE_LOG_PLUGIN, __VA_ARGS__); \ fprintf(stderr, __VA_ARGS__); \ } #define LOG_MSG(xine, ...) { \ - xine_log(xine, XINE_LOG_PLUGIN, __VAR_ARGS__); \ + xine_log(xine, XINE_LOG_PLUGIN, __VA_ARGS__); \ printf(__VA_ARGS__); \ } #endif diff --git a/src/xine-engine/metronom.c b/src/xine-engine/metronom.c index 6f801eb09..86755fe6b 100644 --- a/src/xine-engine/metronom.c +++ b/src/xine-engine/metronom.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: metronom.c,v 1.46 2001/12/27 14:30:30 f1rmb Exp $ + * $Id: metronom.c,v 1.47 2002/01/02 18:16:08 jkeil Exp $ */ #ifdef HAVE_CONFIG_H @@ -60,11 +60,11 @@ } #else #define LOG_MSG_STDERR(xine, ...) { \ - xine_log((xine_t*)xine, XINE_LOG_METRONOM, __VAR_ARGS__); \ + xine_log((xine_t*)xine, XINE_LOG_METRONOM, __VA_ARGS__); \ fprintf(stderr, __VA_ARGS__); \ } #define LOG_MSG(xine, ...) { \ - xine_log((xine_t*)xine, XINE_LOG_METRONOM, __VAR_ARGS__); \ + xine_log((xine_t*)xine, XINE_LOG_METRONOM, __VA_ARGS__); \ printf(__VA_ARGS__); \ } #endif diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index a32ce6f88..c1e808bc9 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.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: video_out.c,v 1.61 2001/12/27 14:30:30 f1rmb Exp $ + * $Id: video_out.c,v 1.62 2002/01/02 18:16:08 jkeil Exp $ * */ @@ -47,11 +47,11 @@ } #else #define LOG_MSG_STDERR(xine, ...) { \ - xine_log(xine, XINE_LOG_VIDEO, __VAR_ARGS__); \ + xine_log(xine, XINE_LOG_VIDEO, __VA_ARGS__); \ fprintf(stderr, __VA_ARGS__); \ } #define LOG_MSG(xine, ...) { \ - xine_log(xine, XINE_LOG_VIDEO, __VAR_ARGS__); \ + xine_log(xine, XINE_LOG_VIDEO, __VA_ARGS__); \ printf(__VA_ARGS__); \ } #endif diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 6ecea0236..60729e63e 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.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: xine.c,v 1.94 2001/12/27 14:30:30 f1rmb Exp $ + * $Id: xine.c,v 1.95 2002/01/02 18:16:08 jkeil Exp $ * * top-level xine functions * @@ -67,11 +67,11 @@ } #else #define LOG_MSG_STDERR(xine, ...) { \ - xine_log(xine, XINE_LOG_MSG, __VAR_ARGS__); \ + xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \ fprintf(stderr, __VA_ARGS__); \ } #define LOG_MSG(xine, ...) { \ - xine_log(xine, XINE_LOG_MSG, __VAR_ARGS__); \ + xine_log(xine, XINE_LOG_MSG, __VA_ARGS__); \ printf(__VA_ARGS__); \ } #endif |