Skip to content

Commit

Permalink
fix dc_msg_force_sticker's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed Dec 21, 2024
1 parent 00607ae commit cc62019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deltachat-ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4049,7 +4049,7 @@ pub unsafe extern "C" fn dc_msg_force_plaintext(msg: *mut dc_msg_t) {
#[no_mangle]
pub unsafe extern "C" fn dc_msg_force_sticker(msg: *mut dc_msg_t) {
if msg.is_null() {
eprintln!("ignoring careless call to dc_msg_force_plaintext()");
eprintln!("ignoring careless call to dc_msg_force_sticker()");
return;
}
let ffi_msg = &mut *msg;
Expand Down

0 comments on commit cc62019

Please sign in to comment.