summaryrefslogtreecommitdiff
path: root/nrf-softdevice-macro
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2020-11-10 13:08:02 +0100
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2020-11-10 13:08:02 +0100
commit60b1bf8352800487e34516338c8db450946abd5a (patch)
tree5f159e00bdd8c96f2e530a501ddd5368fa56738f /nrf-softdevice-macro
parent48ee44be070c7634fb2a9aaaf25a6cf33b73422a (diff)
downloadnrf-softdevice-60b1bf8352800487e34516338c8db450946abd5a.zip
gatt_server: fix another missing absolute path
Diffstat (limited to 'nrf-softdevice-macro')
-rw-r--r--nrf-softdevice-macro/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/nrf-softdevice-macro/src/lib.rs b/nrf-softdevice-macro/src/lib.rs
index 7e2a2e5..8ac6a7e 100644
--- a/nrf-softdevice-macro/src/lib.rs
+++ b/nrf-softdevice-macro/src/lib.rs
@@ -204,7 +204,7 @@ pub fn gatt_server(args: TokenStream, item: TokenStream) -> TokenStream {
code_impl.extend(quote_spanned!(ch.span=>
fn #notify_fn(
&self,
- conn: &Connection,
+ conn: &#ble::Connection,
val: #ty,
) -> Result<(), #ble::gatt_server::NotifyValueError> {
let buf = #ty_as_val::to_gatt(&val);