From c4802454727f939844aaf4d44e49e7fa7c31f32b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Tue, 29 Jan 2008 13:20:49 +0000 Subject: [PATCH] input_CurrentMetaFlags() takes a const parameter --- include/vlc_meta.h | 2 +- src/input/meta.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/vlc_meta.h b/include/vlc_meta.h index ad72f20182..8a8ec797b0 100644 --- a/include/vlc_meta.h +++ b/include/vlc_meta.h @@ -230,6 +230,6 @@ struct meta_engine_t input_item_t *p_item; }; -VLC_EXPORT(uint32_t, input_CurrentMetaFlags,( vlc_meta_t *p_meta ) ); +VLC_EXPORT(uint32_t, input_CurrentMetaFlags,( const vlc_meta_t *p_meta ) ); #endif diff --git a/src/input/meta.c b/src/input/meta.c index 82e4b3a055..f1a05ebfd6 100644 --- a/src/input/meta.c +++ b/src/input/meta.c @@ -575,7 +575,7 @@ void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input ) } -uint32_t input_CurrentMetaFlags( vlc_meta_t *p_meta ) +uint32_t input_CurrentMetaFlags( const vlc_meta_t *p_meta ) { uint32_t i_meta = 0; -- 2.39.2