Skip to content

Commit a3f271b

Browse files
tternesqdot
authored andcommitted
Remove underscore prefix
1 parent 7d7b835 commit a3f271b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/corebluetooth/central_delegate.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,12 +345,12 @@ declare_class!(
345345
&self,
346346
_central: &CBCentralManager,
347347
peripheral: &CBPeripheral,
348-
_error: Option<&NSError>,
348+
error: Option<&NSError>,
349349
) {
350350
trace!(
351351
"delegate_centralmanager_diddisconnectperipheral_error {} (error={:?})",
352352
peripheral_debug(peripheral),
353-
_error
353+
error
354354
);
355355
let peripheral_uuid = nsuuid_to_uuid(unsafe { &peripheral.identifier() });
356356
self.send_event(CentralDelegateEvent::DisconnectedDevice { peripheral_uuid });

0 commit comments

Comments
 (0)