Debug log freeing core_device_proxy typo

This commit is contained in:
Jackson Coxson
2025-03-26 10:39:24 -06:00
parent 83be28e8b0
commit 40936d1183

View File

@@ -376,7 +376,7 @@ pub unsafe extern "C" fn core_device_proxy_create_tcp_adapter(
#[unsafe(no_mangle)]
pub unsafe extern "C" fn core_device_proxy_free(handle: *mut CoreDeviceProxyHandle) {
if !handle.is_null() {
log::debug!("Freeing core_deivce_proxy");
log::debug!("Freeing core_device_proxy");
let _ = unsafe { Box::from_raw(handle) };
}
}