diff options
author | ahze <ahze@FreeBSD.org> | 2005-01-25 09:55:16 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2005-01-25 09:55:16 +0800 |
commit | b1efd08a007955bd4072ca29393eb2ce2c84eba3 (patch) | |
tree | 5e032e29f76226389b88df5dbb157ec6cf62bab8 /ftp/gwget/files/patch-src_main.c | |
parent | fdc0f5e4dde0b33b380a40aa7fc69d4471447e68 (diff) | |
download | freebsd-ports-graphics-b1efd08a007955bd4072ca29393eb2ce2c84eba3.tar.gz freebsd-ports-graphics-b1efd08a007955bd4072ca29393eb2ce2c84eba3.tar.zst freebsd-ports-graphics-b1efd08a007955bd4072ca29393eb2ce2c84eba3.zip |
- Update to 0.93
PR: ports/76640
Submitted by: Radek Kozlowski <radek@raadradd.com> (maintainer)
Diffstat (limited to 'ftp/gwget/files/patch-src_main.c')
-rw-r--r-- | ftp/gwget/files/patch-src_main.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ftp/gwget/files/patch-src_main.c b/ftp/gwget/files/patch-src_main.c new file mode 100644 index 00000000000..9bba1055e4a --- /dev/null +++ b/ftp/gwget/files/patch-src_main.c @@ -0,0 +1,18 @@ +--- src/main.c.orig Mon Jan 24 20:50:50 2005 ++++ src/main.c Mon Jan 24 20:51:46 2005 +@@ -145,12 +145,13 @@ + static void + gnome_session_join(int argc,char *argv[]) + { +- Args *args = g_malloc(sizeof(Args)); ++ GnomeClient* client; ++ Args *args= g_malloc(sizeof(Args)); + + (*args).argc = argc; + (*args).argv = argv; + +- GnomeClient* client = gnome_master_client(); ++ client = gnome_master_client(); + + gnome_client_set_restart_style(client,GNOME_RESTART_IF_RUNNING); + gtk_signal_connect(GTK_OBJECT(client),"save_yourself", |