[vlc-commits] acoustid: Constify buffer parameter
Hugo Beauzée-Luyssen
git at videolan.org
Wed Apr 11 15:35:29 CEST 2018
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Wed Apr 11 14:21:04 2018 +0200| [8795af2bebf182227b2d2bc8d34f16701ec6133c] | committer: Hugo Beauzée-Luyssen
acoustid: Constify buffer parameter
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8795af2bebf182227b2d2bc8d34f16701ec6133c
---
modules/misc/webservices/acoustid.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/misc/webservices/acoustid.c b/modules/misc/webservices/acoustid.c
index 910671a206..c19106ac11 100644
--- a/modules/misc/webservices/acoustid.c
+++ b/modules/misc/webservices/acoustid.c
@@ -90,7 +90,7 @@ static void parse_recordings( vlc_object_t *p_obj, json_value *node, acoustid_re
}
}
-static bool ParseJson( vlc_object_t *p_obj, char *psz_buffer, acoustid_results_t *p_results )
+static bool ParseJson( vlc_object_t *p_obj, const char *psz_buffer, acoustid_results_t *p_results )
{
json_settings settings;
char psz_error[128];
More information about the vlc-commits
mailing list