aboutsummaryrefslogtreecommitdiff
path: root/lib/libthr
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2025-12-16 18:04:18 +0000
committerAlex Richardson <arichardson@FreeBSD.org>2025-12-16 20:21:45 +0000
commit4cfc7de13f110563463c15be99690c6fe7b8676a (patch)
treea76a58f1f6376d4c0ffe29d47432896ff0f42e00 /lib/libthr
parent802c6d5d61d15494a54a386dc2ffbcfefc68c8ab (diff)
Diffstat (limited to 'lib/libthr')
-rw-r--r--lib/libthr/thread/thr_printf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_printf.c b/lib/libthr/thread/thr_printf.c
index e1edffe5acb2..b7cb6ce81bda 100644
--- a/lib/libthr/thread/thr_printf.c
+++ b/lib/libthr/thread/thr_printf.c
@@ -61,7 +61,7 @@ _thread_printf(int fd, const char *fmt, ...)
void
_thread_vprintf(int fd, const char *fmt, va_list ap)
{
- static const char digits[16] = "0123456789abcdef";
+ static const char digits[16] __nonstring = "0123456789abcdef";
char buf[20];
char *s;
unsigned long r, u;
@@ -147,4 +147,3 @@ pstr(int fd, const char *s)
__sys_write(fd, s, strlen(s));
}
-