[vlmc-devel] [PATCH 1/1] VLCMedia: fix warnings
Hugo Beauzée-Luyssen
hugo at beauzee.fr
Mon Jan 26 22:08:45 CET 2015
On 12/30/2014 05:45 PM, Tristan Matthews wrote:
> Fixes "warning: format ‘%lld’ expects argument of type 'long long int'"
> ---
> src/Backend/VLC/LibVLCpp/VLCMedia.cpp | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/src/Backend/VLC/LibVLCpp/VLCMedia.cpp b/src/Backend/VLC/LibVLCpp/VLCMedia.cpp
> index 2284bf6..658631f 100644
> --- a/src/Backend/VLC/LibVLCpp/VLCMedia.cpp
> +++ b/src/Backend/VLC/LibVLCpp/VLCMedia.cpp
> @@ -57,7 +57,7 @@ void
> Media::setVideoLockCallback( void* callback )
> {
> char param[64];
> - sprintf( param, ":sout-smem-video-prerender-callback=%"PRId64, (intptr_t)callback );
> + sprintf( param, ":sout-smem-video-prerender-callback=%"PRIdPTR, (intptr_t)callback );
> addOption(param);
> }
>
> @@ -65,7 +65,7 @@ void
> Media::setVideoUnlockCallback( void* callback )
> {
> char param[64];
> - sprintf( param, ":sout-smem-video-postrender-callback=%"PRId64, (intptr_t)callback );
> + sprintf( param, ":sout-smem-video-postrender-callback=%"PRIdPTR, (intptr_t)callback );
> addOption( param );
> }
>
> @@ -73,7 +73,7 @@ void
> Media::setAudioLockCallback( void* callback )
> {
> char param[64];
> - sprintf( param, ":sout-smem-audio-prerender-callback=%"PRId64, (intptr_t)callback );
> + sprintf( param, ":sout-smem-audio-prerender-callback=%"PRIdPTR, (intptr_t)callback );
> addOption(param);
> }
>
> @@ -81,7 +81,7 @@ void
> Media::setAudioUnlockCallback( void* callback )
> {
> char param[64];
> - sprintf( param, ":sout-smem-audio-postrender-callback=%"PRId64, (intptr_t)callback );
> + sprintf( param, ":sout-smem-audio-postrender-callback=%"PRIdPTR, (intptr_t)callback );
> addOption( param );
> }
>
> @@ -90,7 +90,7 @@ Media::setVideoDataCtx( void* dataCtx )
> {
> char param[64];
>
> - sprintf( param, ":sout-smem-video-data=%"PRId64, (intptr_t)dataCtx );
> + sprintf( param, ":sout-smem-video-data=%"PRIdPTR, (intptr_t)dataCtx );
> addOption( param );
> }
>
> @@ -99,7 +99,7 @@ Media::setAudioDataCtx( void* dataCtx )
> {
> char param[64];
>
> - sprintf( param, ":sout-smem-audio-data=%"PRId64, (intptr_t)dataCtx );
> + sprintf( param, ":sout-smem-audio-data=%"PRIdPTR, (intptr_t)dataCtx );
> addOption( param );
> }
>
>
Hi,
This is obviously correct, and now applied.
Sorry for the delay, and thanks!
Regards,
--
Hugo Beauzée-Luyssen
More information about the Vlmc-devel
mailing list