summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/console_buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/shim/src/console_buffer.c')
-rw-r--r--zephyr/shim/src/console_buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/shim/src/console_buffer.c b/zephyr/shim/src/console_buffer.c
index 191306c80e..b768bb279f 100644
--- a/zephyr/shim/src/console_buffer.c
+++ b/zephyr/shim/src/console_buffer.c
@@ -52,7 +52,7 @@ void console_buf_notify_chars(const char *s, size_t len)
current_snapshot_idx =
next_idx(current_snapshot_idx);
- console_buf[new_tail] = *s++;
+ console_buf[tail_idx] = *s++;
tail_idx = new_tail;
}
k_mutex_unlock(&console_write_lock);