diff options
author | pav <pav@FreeBSD.org> | 2005-05-21 01:24:35 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-05-21 01:24:35 +0800 |
commit | 15e2fa3582fc25d015a21546cee31d7c27f9807e (patch) | |
tree | 7adc4cf41aacb1e3ec2bfa8dcf45febcd40125e5 | |
parent | 803af2bb3f309253ad2c2e9de8ad6c04c9b14769 (diff) | |
download | freebsd-ports-gnome-15e2fa3582fc25d015a21546cee31d7c27f9807e.tar.gz freebsd-ports-gnome-15e2fa3582fc25d015a21546cee31d7c27f9807e.tar.zst freebsd-ports-gnome-15e2fa3582fc25d015a21546cee31d7c27f9807e.zip |
- Fix build with gcc-2.95
-rw-r--r-- | mail/pfqueue/files/patch-pfqueue.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mail/pfqueue/files/patch-pfqueue.c b/mail/pfqueue/files/patch-pfqueue.c new file mode 100644 index 000000000000..4a494feb9dd5 --- /dev/null +++ b/mail/pfqueue/files/patch-pfqueue.c @@ -0,0 +1,14 @@ +--- pfqueue.c.orig Fri May 20 12:26:17 2005 ++++ pfqueue.c Fri May 20 19:21:56 2005 +@@ -562,9 +562,10 @@ + + // Sets the list window title + void win_listtitle() { ++ char buf[BUF_SIZE]; ++ + wattron ( lwnd, A_BOLD ); + +- char buf[BUF_SIZE]; + sprintf ( buf, "Queue: '%s', %d message%s, %d tagged %s %s %s", + q_names[CURQ], NUMMSG, + ( NUMMSG != 1 ? "s" : "" ), |