diff options
author | tron <tron@pkgsrc.org> | 2003-09-28 20:13:55 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2003-09-28 20:13:55 +0000 |
commit | facc7a5cf9718e4523a01d93f0f8bd8fcaa4fad2 (patch) | |
tree | 04eb52c817a0e77c17eeeaac120a15b60f33bc87 /chat/icb/patches | |
parent | 3a97bad00a59b7696c107147c9e8b9df7b682ca6 (diff) | |
download | pkgsrc-facc7a5cf9718e4523a01d93f0f8bd8fcaa4fad2.tar.gz |
Fix thinko in last commit.
Diffstat (limited to 'chat/icb/patches')
-rw-r--r-- | chat/icb/patches/patch-au | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chat/icb/patches/patch-au b/chat/icb/patches/patch-au index d0534e96b83..84394e2f8a5 100644 --- a/chat/icb/patches/patch-au +++ b/chat/icb/patches/patch-au @@ -1,7 +1,7 @@ -$NetBSD: patch-au,v 1.1 2003/09/28 19:29:37 tron Exp $ +$NetBSD: patch-au,v 1.2 2003/09/28 20:13:55 tron Exp $ ---- tcl/panic.c.orig 1995-02-24 22:19:49.000000000 +0100 -+++ tcl/panic.c 2003-09-28 21:27:47.000000000 +0200 +--- tcl/panic.c.orig Fri Feb 24 22:19:49 1995 ++++ tcl/panic.c Sun Sep 28 22:12:20 2003 @@ -19,7 +19,7 @@ #include <stdio.h> @@ -11,7 +11,7 @@ $NetBSD: patch-au,v 1.1 2003/09/28 19:29:37 tron Exp $ /* *---------------------------------------------------------------------- -@@ -39,18 +39,19 @@ +@@ -39,18 +39,18 @@ #ifndef lint void @@ -28,8 +28,8 @@ $NetBSD: patch-au,v 1.1 2003/09/28 19:29:37 tron Exp $ + char *format; - va_start(args); +- format = va_arg(args, char *); + va_start(args, format); - format = va_arg(args, char *); (void) vfprintf(stderr, format, args); + va_end(args); (void) fflush(stderr); |