X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=second%2Fprom.c;h=c89182ca83b5b98f31368d9bb750fb37089b9572;hb=9323f7c29a886304325b1562450729a12e0ccbea;hp=209dd87d777fcf52d99b91d28541751578480781;hpb=0ef1539b6f680ba09c88be5bb94a821fd2599931;p=yaboot.git diff --git a/second/prom.c b/second/prom.c index 209dd87..c89182c 100644 --- a/second/prom.c +++ b/second/prom.c @@ -414,7 +414,7 @@ prom_puts (prom_handle file, char *s) void prom_vfprintf (prom_handle file, char *fmt, va_list ap) { - static char printf_buf[1536]; + static char printf_buf[2048]; vsprintf (printf_buf, fmt, ap); prom_puts (file, printf_buf); } @@ -422,7 +422,7 @@ prom_vfprintf (prom_handle file, char *fmt, va_list ap) void prom_vprintf (char *fmt, va_list ap) { - static char printf_buf[1536]; + static char printf_buf[2048]; vsprintf (printf_buf, fmt, ap); prom_puts (prom_stdout, printf_buf); } @@ -628,7 +628,7 @@ prom_pause(void) /* * Local variables: - * c-file-style: "K&R" + * c-file-style: "k&r" * c-basic-offset: 5 * End: */