From 3e36ce40760d8d3d6944f6c73369a3c9a8dbef55 Mon Sep 17 00:00:00 2001 From: meh Date: Mon, 3 Aug 2015 18:54:09 +0200 Subject: [PATCH] avutil/log: fix av_log type --- sys/src/avutil/log.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/src/avutil/log.rs b/sys/src/avutil/log.rs index 6d4bfa4..83401b3 100644 --- a/sys/src/avutil/log.rs +++ b/sys/src/avutil/log.rs @@ -78,7 +78,7 @@ pub fn AV_LOG_C(x: c_int) -> c_int { } extern { - pub fn av_log(avcl: *mut c_void, level: c_int, fmt: *const char, ...); + pub fn av_log(avcl: *mut c_void, level: c_int, fmt: *const c_char, ...); //pub fn av_vlog(avcl: *mut c_void, level: c_int, fmt: *const c_char, vl: va_list); pub fn av_log_get_level() -> c_int; pub fn av_log_set_level(level: c_int);