aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits
diff options
context:
space:
mode:
authorswills <swills@FreeBSD.org>2010-10-15 12:30:04 +0800
committerswills <swills@FreeBSD.org>2010-10-15 12:30:04 +0800
commita499b3b252d38b3baca645acdac6bc552165279d (patch)
tree45766c3a632ffdd4b0354a585c85c9f487d27b59 /x11-toolkits
parentb064757fd371460f4fc4df804e8001d816546022 (diff)
downloadfreebsd-ports-gnome-a499b3b252d38b3baca645acdac6bc552165279d.tar.gz
freebsd-ports-gnome-a499b3b252d38b3baca645acdac6bc552165279d.tar.zst
freebsd-ports-gnome-a499b3b252d38b3baca645acdac6bc552165279d.zip
- Fix runtime issue
Approved by: pgollucci (mentor)
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c2
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c b/x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c
index b69f74cccc75..4377359d6edd 100644
--- a/x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c
+++ b/x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c
@@ -5,7 +5,7 @@
VALUE obj = rb_eval_string("eval('self', binding)");
G_RELATIVE(obj, self);
- RBGTK_INITIALIZE(self, gtk_item_factory_new(FIX2INT(type), RVAL2CSTR(path),
-+ RBGTK_INITIALIZE(self, gtk_item_factory_new(NUM2UINT(type), RVAL2CSTR(path),
++ RBGTK_INITIALIZE(self, gtk_item_factory_new(NUM2ULONG(type), RVAL2CSTR(path),
RVAL2ACCEL(accel)));
return Qnil;