aboutsummaryrefslogtreecommitdiff
path: root/hal_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'hal_internal.h')
-rw-r--r--hal_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hal_internal.h b/hal_internal.h
index f6c31fe..13c79e9 100644
--- a/hal_internal.h
+++ b/hal_internal.h
@@ -696,7 +696,7 @@ static inline hal_error_t hal_ks_logout(hal_ks_t *ks,
if (ks == NULL)
return HAL_ERROR_BAD_ARGUMENTS;
- if (ks->logout == NULL || client.handle == HAL_HANDLE_NONE)
+ if (ks->driver->logout == NULL || client.handle == HAL_HANDLE_NONE)
return HAL_OK;
return ks->driver->logout(ks, client);