summaryrefslogtreecommitdiff
path: root/profcollectd
diff options
context:
space:
mode:
authorStephen Crane <cranes@google.com>2021-08-16 16:41:35 -0700
committerStephen Crane <cranes@google.com>2022-01-12 09:29:28 -0800
commit8cc7cb2bfdb721c735a59aaced0e69beb5520cf7 (patch)
tree2ec3c58e381e5ee3bd480a7d3a907efc20398a4b /profcollectd
parent116d229784b5f74819ecc88dba2ff28d27b229e9 (diff)
downloadextras-8cc7cb2bfdb721c735a59aaced0e69beb5520cf7.tar.gz
[libprofcollectd] Fix binder import path
Import from the binder crate root instead of binder::public_api for compatibility with the new crate structure. Test: m Bug: 196056781 Change-Id: I773767a3ae1cd797fe937a4f72f9588d63119e4c
Diffstat (limited to 'profcollectd')
-rw-r--r--profcollectd/libprofcollectd/service.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/profcollectd/libprofcollectd/service.rs b/profcollectd/libprofcollectd/service.rs
index 701edff6..0199c105 100644
--- a/profcollectd/libprofcollectd/service.rs
+++ b/profcollectd/libprofcollectd/service.rs
@@ -17,7 +17,7 @@
//! ProfCollect Binder service implementation.
use anyhow::{anyhow, Context, Error, Result};
-use binder::public_api::Result as BinderResult;
+use binder::Result as BinderResult;
use binder::Status;
use profcollectd_aidl_interface::aidl::com::android::server::profcollect::IProfCollectd::IProfCollectd;
use std::ffi::CString;