diff options
author | Richard Braun <rbraun@sceen.net> | 2017-04-29 22:59:14 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-04-29 22:59:14 +0200 |
commit | 224179f50dfeb4ba2598505e4c9fcf524639439d (patch) | |
tree | eda7d9dc3275da83252232ad96c2846db71c73bf /kern/printf.c | |
parent | a0563b4eec601eadc89081eeb7e14edd193ef95d (diff) |
kern/printf: complete renaming from printk to printf
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 |