Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b10a318 authored by Christian Wailes's avatar Christian Wailes Committed by Automerger Merge Worker
Browse files

Merge "Fix warnings in preparation for Rust 1.54.0" am: 506048be am: 676e3f4d am: 4fe25068

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1780269

Change-Id: Id2b048a21e9f3d0938c3be71e2ce600b1b3d0d63
parents 8f2390cc 4fe25068
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ impl IBinderRustNdkInteropTest for Service {
pub unsafe extern "C" fn rust_start_service(service_name: *const c_char) -> c_int {
    let service_name = CStr::from_ptr(service_name).to_str().unwrap();
    let service = BnBinderRustNdkInteropTest::new_binder(Service, BinderFeatures::default());
    match binder::add_service(&service_name, service.as_binder()) {
    match binder::add_service(service_name, service.as_binder()) {
        Ok(_) => StatusCode::OK as c_int,
        Err(e) => e as c_int,
    }