summaryrefslogtreecommitdiff
path: root/firefox-2.0-dnd.patch
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2007-08-08 17:00:42 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2007-08-08 17:00:42 +0000
commit795983ff16b967821039d9253012be3b05e7439c (patch)
treec7dd5ae6249a34d3a932d42c8b885fe7c04a253e /firefox-2.0-dnd.patch
parentremote script update (diff)
downloadlibrewolf-fedora-ff-795983ff16b967821039d9253012be3b05e7439c.tar.gz
librewolf-fedora-ff-795983ff16b967821039d9253012be3b05e7439c.tar.bz2
librewolf-fedora-ff-795983ff16b967821039d9253012be3b05e7439c.zip
fix up casting
Diffstat (limited to 'firefox-2.0-dnd.patch')
-rw-r--r--firefox-2.0-dnd.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox-2.0-dnd.patch b/firefox-2.0-dnd.patch
index a26dcdb..3730ed5 100644
--- a/firefox-2.0-dnd.patch
+++ b/firefox-2.0-dnd.patch
@@ -841,7 +841,7 @@ diff -u -r1.1.1.1 nsDragService.cpp
+
+ target->target = g_strdup(aFlavorStr);
+ target->flags = 0;
-+ target->info = (guint)atom;
++ target->info = GPOINTER_TO_UINT(atom);
+
+ return target;
+}
bgstack15