From 901560ef4032e158ad689e7ac3ed1fe20869592e Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Mon, 22 Nov 2021 08:45:51 -0800 Subject: [PATCH] Update quantum/quantum.c Co-authored-by: Nick Brassel --- quantum/quantum.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quantum/quantum.c b/quantum/quantum.c index a37cdae9fd7b..523c2d1f1d45 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -576,6 +576,8 @@ __attribute__((weak)) void suspend_wakeup_init_quantum(void) { * * Takes an unsigned integer, and uses a static conversion buffer to convert that value into a * char array + * NOTE: Subsequent invocations will reuse the same static buffer and overwrite the previous + * contents. Use the result immediately, instead of caching it. */ const char *get_numeric_str(char *buf, size_t buf_len, uint32_t curr_num, char curr_pad) {