diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2012-01-10 21:42:04 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2012-01-10 21:42:04 +0000 |
commit | c4888045440dadbd2e861b7cf3dae6065e895385 (patch) | |
tree | 8269a31e7013b811a467b8cdc578adf50c1ab93d /src | |
parent | 730b3590f7c42154dbd6c3c905b2181b99311c07 (diff) | |
download | xine-lib-c4888045440dadbd2e861b7cf3dae6065e895385.tar.gz xine-lib-c4888045440dadbd2e861b7cf3dae6065e895385.tar.bz2 |
And the other two similar printf()s.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_xcbxv.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_xxmc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/video_out/video_out_xcbxv.c b/src/video_out/video_out_xcbxv.c index a07864e8e..3019898b3 100644 --- a/src/video_out/video_out_xcbxv.c +++ b/src/video_out/video_out_xcbxv.c @@ -1218,8 +1218,8 @@ static vo_driver_t *open_plugin(video_driver_class_t *class_gen, const void *vis if (xv_port != 0) { if (! xv_open_port(this, xv_port)) { xprintf(class->xine, XINE_VERBOSITY_NONE, - _("%s: could not open Xv port %d - autodetecting\n"), - LOG_MODULE, xv_port); + _("%s: could not open Xv port %lu - autodetecting\n"), + LOG_MODULE, (unsigned long)xv_port); adaptor_it = adaptor_first; xv_port = xv_autodetect_port (this, &adaptor_it, xv_port, prefer_type); } else diff --git a/src/video_out/video_out_xxmc.c b/src/video_out/video_out_xxmc.c index e35ce5f12..14fcbce97 100644 --- a/src/video_out/video_out_xxmc.c +++ b/src/video_out/video_out_xxmc.c @@ -2494,8 +2494,8 @@ static vo_driver_t *open_plugin (video_driver_class_t *class_gen, const void *vi if (xv_port != 0) { if (! xxmc_open_port(this, xv_port)) { xprintf(class->xine, XINE_VERBOSITY_NONE, - _("%s: could not open Xv port %d - autodetecting\n"), - LOG_MODULE, xv_port); + _("%s: could not open Xv port %lu - autodetecting\n"), + LOG_MODULE, (unsigned long)xv_port); xv_port = xxmc_autodetect_port(this, adaptors, adaptor_info, &adaptor_num, xv_port, prefer_type); } else adaptor_num = xxmc_find_adaptor_by_port (xv_port, adaptors, adaptor_info); |