summaryrefslogtreecommitdiff
path: root/src/xine-engine/load_plugins.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r--src/xine-engine/load_plugins.c6
1 files changed, 3 insertions, 3 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