diff options
author | arved <arved@FreeBSD.org> | 2007-08-02 20:05:45 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2007-08-02 20:05:45 +0800 |
commit | dd2a7e2bc0cdc0cac1972c3b6d232ddb61a6b687 (patch) | |
tree | 337646ab9b818d29445b18603d36794e2567cce8 /www | |
parent | e467939b47a1a8897f37805008ef425e1ea36eba (diff) | |
download | freebsd-ports-gnome-dd2a7e2bc0cdc0cac1972c3b6d232ddb61a6b687.tar.gz freebsd-ports-gnome-dd2a7e2bc0cdc0cac1972c3b6d232ddb61a6b687.tar.zst freebsd-ports-gnome-dd2a7e2bc0cdc0cac1972c3b6d232ddb61a6b687.zip |
Fix build on 64bit platforms
Diffstat (limited to 'www')
-rw-r--r-- | www/aria/files/patch-src::gui_download.cc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/www/aria/files/patch-src::gui_download.cc b/www/aria/files/patch-src::gui_download.cc index 1559b6359b01..be338bf8a891 100644 --- a/www/aria/files/patch-src::gui_download.cc +++ b/www/aria/files/patch-src::gui_download.cc @@ -1,5 +1,5 @@ ---- src/gui_download.cc.orig Wed Oct 2 00:32:00 2002 -+++ src/gui_download.cc Thu Apr 8 22:55:40 2004 +--- src/gui_download.cc.orig 2002-10-01 17:32:00.000000000 +0200 ++++ src/gui_download.cc 2007-08-02 14:02:21.000000000 +0200 @@ -24,7 +24,7 @@ #include <sys/time.h> #include <sys/types.h> @@ -9,3 +9,12 @@ #include <list> #include <algorithm> #include "aria.h" +@@ -131,7 +131,7 @@ + static void Backup_selection_list(GtkWidget *clist, list<int>& selection_temp) + { + for(GList* node = GTK_CLIST(clist)->selection; node != NULL; node = g_list_next(node)) { +- selection_temp.push_back((int)node->data); ++ selection_temp.push_back((intptr_t)node->data); + } + } + |