dc_get_info: accept immutable context

This commit is contained in:
Alexander Krotov
2020-09-23 03:47:45 +03:00
committed by link2xt
parent 21b18836ca
commit 8301e27f86
2 changed files with 2 additions and 2 deletions

View File

@@ -218,7 +218,7 @@ pub unsafe extern "C" fn dc_set_config_from_qr(
}
#[no_mangle]
pub unsafe extern "C" fn dc_get_info(context: *mut dc_context_t) -> *mut libc::c_char {
pub unsafe extern "C" fn dc_get_info(context: *const dc_context_t) -> *mut libc::c_char {
if context.is_null() {
eprintln!("ignoring careless call to dc_get_info()");
return "".strdup();