diff options
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r-- | src/xine-engine/video_out.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 |