diff options
Diffstat (limited to 'kern/printf.c')
-rw-r--r-- | kern/printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |