summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Hintukainen <phintuka@users.sourceforge.net>2011-12-15 23:28:25 +0200
committerPetri Hintukainen <phintuka@users.sourceforge.net>2011-12-15 23:28:25 +0200
commitfc97fb46d693697ef65f008f7a38a3797599e4cb (patch)
tree492283913fb72b0e296399052e62a4062f50656e
parent30a0adeffd984dac22414e459d4e6d0dd989e08b (diff)
downloadxine-lib-fc97fb46d693697ef65f008f7a38a3797599e4cb.tar.gz
xine-lib-fc97fb46d693697ef65f008f7a38a3797599e4cb.tar.bz2
Fixed printf format
--HG-- branch : point-release
-rw-r--r--src/video_out/video_out_xv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index 1404871d4..af1752158 100644
--- a/src/video_out/video_out_xv.c
+++ b/src/video_out/video_out_xv.c
@@ -1429,8 +1429,8 @@ static vo_driver_t *open_plugin_2 (video_driver_class_t *class_gen, const void *
if (xv_port != 0) {
if (! xv_open_port(this, xv_port)) {
xprintf(class->xine, XINE_VERBOSITY_NONE,
- _("%s: could not open Xv port %"PRId32" - autodetecting\n"),
- LOG_MODULE, xv_port);
+ _("%s: could not open Xv port %lu - autodetecting\n"),
+ LOG_MODULE, (unsigned long)xv_port);
xv_port = xv_autodetect_port(this, adaptors, adaptor_info, &adaptor_num, xv_port, prefer_type);
} else
adaptor_num = xv_find_adaptor_by_port (xv_port, adaptors, adaptor_info);