diff options
| author | hathach <[email protected]> | 2025-12-16 00:19:13 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2025-12-16 00:19:13 +0700 |
| commit | 0a9e05f47adca971eb4af8b08adf0debbc6b83db (patch) | |
| tree | 3091abb1ad8c16ff18767f4239cb777ea6bf45f8 /src/osal | |
| parent | 77fcf62f9fba99a0344ba95d78130a5c0c921e56 (diff) | |
make fifo access mode fixed addr work with 16 bit also
Diffstat (limited to 'src/osal')
| -rw-r--r-- | src/osal/osal_none.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osal/osal_none.h b/src/osal/osal_none.h index 174136e38..aa6111a16 100644 --- a/src/osal/osal_none.h +++ b/src/osal/osal_none.h @@ -171,7 +171,7 @@ typedef osal_queue_def_t* osal_queue_t; } TU_ATTR_ALWAYS_INLINE static inline osal_queue_t osal_queue_create(osal_queue_def_t* qdef) { - (void) tu_fifo_clear(&qdef->ff); + tu_fifo_clear(&qdef->ff); return (osal_queue_t) qdef; } |
