diff options
author | 2005-02-24 10:14:42 +0000 | |
---|---|---|
committer | 2005-02-24 10:14:42 +0000 | |
commit | fd659db8eb5c8e12725abbf73feeb402d3e26844 (patch) | |
tree | f85b9072bfa375ecd3910386ad3c848dcd08bc99 /gnome-base/libgnome/files | |
parent | Fix digest. (diff) | |
download | gentoo-2-fd659db8eb5c8e12725abbf73feeb402d3e26844.tar.gz gentoo-2-fd659db8eb5c8e12725abbf73feeb402d3e26844.tar.bz2 gentoo-2-fd659db8eb5c8e12725abbf73feeb402d3e26844.zip |
Applied patch to revert va_list initialisation as in Aron's previous patch
Diffstat (limited to 'gnome-base/libgnome/files')
-rw-r--r-- | gnome-base/libgnome/files/libgnome-2.8.1-va_list.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnome-base/libgnome/files/libgnome-2.8.1-va_list.patch b/gnome-base/libgnome/files/libgnome-2.8.1-va_list.patch new file mode 100644 index 000000000000..b4c2e5bcc038 --- /dev/null +++ b/gnome-base/libgnome/files/libgnome-2.8.1-va_list.patch @@ -0,0 +1,12 @@ +diff -ur libgnome-2.8.1/libgnome/gnome-program.c libgnome-2.8.1-patched/libgnome/gnome-program.c +--- libgnome-2.8.1/libgnome/gnome-program.c 2005-02-21 20:39:01.000000000 +0800 ++++ libgnome-2.8.1-patched/libgnome/gnome-program.c 2005-02-24 18:06:35.184985488 +0800 +@@ -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); |