diff options
author | jmc <jmc@pkgsrc.org> | 2002-03-07 06:46:19 +0000 |
---|---|---|
committer | jmc <jmc@pkgsrc.org> | 2002-03-07 06:46:19 +0000 |
commit | eead42e0d616e79cbadfa34db6dd81460f1f8139 (patch) | |
tree | 1f02a4a65eb7b29b6d20c7196d1a40fd5d7f4957 /math/pspp/patches | |
parent | f2a2fb1ab6715c37d9ca6c8081315ade44b18180 (diff) | |
download | pkgsrc-eead42e0d616e79cbadfa34db6dd81460f1f8139.tar.gz |
Fix obvious bug in call to tmsg compiler was complaining about.
Diffstat (limited to 'math/pspp/patches')
-rw-r--r-- | math/pspp/patches/patch-ai | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/math/pspp/patches/patch-ai b/math/pspp/patches/patch-ai new file mode 100644 index 00000000000..bd73ffc0b4b --- /dev/null +++ b/math/pspp/patches/patch-ai @@ -0,0 +1,13 @@ +$NetBSD: patch-ai,v 1.3 2002/03/07 06:46:35 jmc Exp $ + +--- src/groff-font.c.orig Thu Mar 7 06:43:18 2002 ++++ src/groff-font.c Thu Mar 7 06:43:43 2002 +@@ -397,7 +397,7 @@ + va_list args; + + va_start (args, format); +- tmsg (class, format, args, _("installation error: Groff font error: ")); ++ tmsg (class, format, _("installation error: Groff font error: "), args); + va_end (args); + + return 0; |