summaryrefslogtreecommitdiff
path: root/src/kernel/printf.c
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@bpcspace.com>2021-09-24 14:20:20 -0500
committerBrett Weiland <brett_weiland@bpcspace.com>2021-09-24 14:20:20 -0500
commitb62706c9f2ceed65394457ae9b131996a2b29463 (patch)
treee00d7d68f4dcaac07ae8931e0a7871ef34d270d6 /src/kernel/printf.c
parentcf7cd8be60c254b44b444c97dcb238d7cf3afd4c (diff)
palloc/pfree found smp safe
Diffstat (limited to 'src/kernel/printf.c')
-rw-r--r--src/kernel/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/printf.c b/src/kernel/printf.c
index 62261ec..8e33981 100644
--- a/src/kernel/printf.c
+++ b/src/kernel/printf.c
@@ -873,7 +873,7 @@ static int _vsnprintf(out_fct_type out, char* buffer, const size_t maxlen, const
///////////////////////////////////////////////////////////////////////////////
-static uint8_t printf_lock = 0;
+static uint16_t printf_lock = 0;
int printf_(const char* format, ...)
{
//BRETT modification