summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2005-02-22 04:36:54 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2005-02-22 04:36:54 +0000
commit86b1d6b8d493e45d99670f18f014c81c5d551904 (patch)
treeaef679ce7aeba64a9822b0061e528911fb87c364 /x11
parent- Incorrect pkg-plist corrected. One directory was left after deinstall. (diff)
Fix the build on amd64. Not all architectures allow a va_list to be
assigned a scalar value. Reported by: Sean McNeil <sean@mcneil.com>
Notes
Notes: svn path=/head/; revision=129524
Diffstat (limited to 'x11')
-rw-r--r--x11/libgnome/files/patch-libgnome_gnome-program.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/x11/libgnome/files/patch-libgnome_gnome-program.c b/x11/libgnome/files/patch-libgnome_gnome-program.c
index 9dd33f9c2838..8485c2aa7660 100644
--- a/x11/libgnome/files/patch-libgnome_gnome-program.c
+++ b/x11/libgnome/files/patch-libgnome_gnome-program.c
@@ -1,5 +1,5 @@
---- libgnome/gnome-program.c.orig Mon May 31 16:37:02 2004
-+++ libgnome/gnome-program.c Mon May 31 16:37:05 2004
+--- libgnome/gnome-program.c.orig Mon Feb 21 07:39:01 2005
++++ libgnome/gnome-program.c Mon Feb 21 23:35:17 2005
@@ -895,17 +895,17 @@
attr_rel = "";
break;
@@ -68,3 +68,12 @@
search_path = FALSE;
break;
+@@ -1928,7 +1928,7 @@
+ int argc, char **argv,
+ guint nparams, GParameter *params)
+ {
+- va_list args = 0;
++ va_list args;
+
+ return gnome_program_init_common (type, app_id, app_version, module_info,
+ argc, argv, NULL, args, nparams, params);