From 224179f50dfeb4ba2598505e4c9fcf524639439d Mon Sep 17 00:00:00 2001 From: Richard Braun Date: Sat, 29 Apr 2017 22:59:14 +0200 Subject: kern/printf: complete renaming from printk to printf --- kern/printf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kern/printf.c') diff --git a/kern/printf.c b/kern/printf.c index 7e48b5dd..68ae1037 100644 --- a/kern/printf.c +++ b/kern/printf.c @@ -23,14 +23,14 @@ /* * Size of the static buffer. */ -#define PRINTK_BUFSIZE 1024 +#define PRINTF_BUFSIZE 1024 /* * XXX Must be provided by a console driver. */ extern void console_write_byte(char c); -static char printf_buffer[PRINTK_BUFSIZE]; +static char printf_buffer[PRINTF_BUFSIZE]; static struct spinlock printf_lock; int -- cgit v1.2.3