summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToomas Soome <tsoome@me.com>2019-10-30 14:24:12 +0200
committerToomas Soome <tsoome@me.com>2019-11-01 17:10:47 +0200
commita73ed278e8e65ae8780cbb2efbcb6ed43e0f3c69 (patch)
tree4b29c322c35609b7ed0882ae34470b8617a44500
parent7e14732609fbf57851b94ba18226a3638224486b (diff)
downloadillumos-joyent-a73ed278e8e65ae8780cbb2efbcb6ed43e0f3c69.tar.gz
11895 libumem: umem_error_buffer is gone
Reviewed by: John Levon <john.levon@joyent.com> Reviewed by: Andy Fiddaman <andy@omniosce.org> Approved by: Robert Mustacchi <rm@fingolfin.org>
-rw-r--r--usr/src/lib/libumem/common/misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/lib/libumem/common/misc.c b/usr/src/lib/libumem/common/misc.c
index 6d809e19e0..b8c3847fa6 100644
--- a/usr/src/lib/libumem/common/misc.c
+++ b/usr/src/lib/libumem/common/misc.c
@@ -49,9 +49,9 @@
static mutex_t umem_error_lock = DEFAULTMUTEX;
-static char umem_error_buffer[ERR_SIZE] = "";
-static uint_t umem_error_begin = 0;
-static uint_t umem_error_end = 0;
+char umem_error_buffer[ERR_SIZE] = "";
+uint_t umem_error_begin = 0;
+uint_t umem_error_end = 0;
#define WRITE_AND_INC(var, value) { \
umem_error_buffer[(var)++] = (value); \