[vlc-commits] [Git][videolan/vlc][master] fdkaac: fix size_t format specifier
Steve Lhomme (@robUx4)
gitlab at videolan.org
Fri Mar 14 06:53:55 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
43dd4141 by Johannes Kauffmann at 2025-03-14T06:39:56+00:00
fdkaac: fix size_t format specifier
- - - - -
1 changed file:
- modules/codec/fdkaac.c
Changes:
=====================================
modules/codec/fdkaac.c
=====================================
@@ -318,7 +318,7 @@ static int OpenEncoder(vlc_object_t *p_this)
#ifndef NDEBUG
// TODO: Add more debug info to this config printout
- msg_Dbg(p_enc, "fmt_out.p_extra = %i", p_enc->fmt_out.i_extra);
+ msg_Dbg(p_enc, "fmt_out.p_extra = %zu", p_enc->fmt_out.i_extra);
#endif
return VLC_SUCCESS;
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/43dd414148b440cccb0cfb61b18b0973e0be0b95
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/43dd414148b440cccb0cfb61b18b0973e0be0b95
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list