1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00
freebsd-ports/print/psutils-letter/files/patch-pserror.c
Hiroki Sato 9eb9521064 - Fix build when CC=clang.
- Style fixes.
- Add MASTER_SITES.
- Take maintainership.

PR:	ports/158074
2011-06-20 19:35:51 +00:00

12 lines
459 B
C

--- pserror.c.orig 2011-06-21 04:20:14.000000000 +0900
+++ pserror.c 2011-06-21 04:20:31.000000000 +0900
@@ -24,7 +24,7 @@
void message(int flags, char *format, ...)
{
va_list args ;
- static column = 0 ; /* current screen column for message wrap */
+ static int column = 0 ; /* current screen column for message wrap */
char msgbuf[MAX_MESSAGE] ; /* buffer in which to put the message */
char *bufptr = msgbuf ; /* message buffer pointer */