From f91309f1ec3d6491324cc6ffc4fcd8a33ae474c0 Mon Sep 17 00:00:00 2001 From: Alexey Gerenkov Date: Mon, 2 Mar 2026 23:34:04 +0800 Subject: [PATCH] fix(app_trace): Fix warning in ring buffer initialization Close #18269 --- components/app_trace/include/esp_app_trace_util.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/app_trace/include/esp_app_trace_util.h b/components/app_trace/include/esp_app_trace_util.h index da2ee57668..85c02ff7f4 100644 --- a/components/app_trace/include/esp_app_trace_util.h +++ b/components/app_trace/include/esp_app_trace_util.h @@ -94,7 +94,7 @@ esp_err_t esp_apptrace_lock_give(esp_apptrace_lock_t *lock); /** Ring buffer control structure. * * @note For purposes of application tracing module if there is no enough space for user data and write pointer can be wrapped - * current ring buffer size can be temporarily shrinked in order to provide buffer with requested size. + * current ring buffer size can be temporarily shrunk in order to provide buffer with requested size. */ typedef struct { uint8_t *data; ///< pointer to data storage @@ -114,7 +114,8 @@ typedef struct { static inline void esp_apptrace_rb_init(esp_apptrace_rb_t *rb, uint8_t *data, uint32_t size) { rb->data = data; - rb->size = rb->cur_size = size; + rb->size = size; + rb->cur_size = size; rb->rd = 0; rb->wr = 0; }