1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/games/gnomegames/files/patch-ah
Yukihiro Nakai f372ba1e4d Add a patch for 4.0-CURRENT.
PR:		ports/15110
Submitted by:	"Alex D. Chen" <dhchen@ilh.dorm9.nccu.edu.tw>
1999-12-02 04:29:31 +00:00

21 lines
712 B
Plaintext

--- xbill/MCursor.cc.orig Thu Dec 2 13:15:03 1999
+++ xbill/MCursor.cc Thu Dec 2 13:15:49 1999
@@ -9,7 +9,7 @@
sprintf (file, "%s/%s.xpm", dir, name);
pixmap = gdk_pixmap_colormap_create_from_xpm(ui.display, ui.colormap,
- &bitmap, NULL, file);
+ &bitmap, (GdkColor *)NULL, file);
if (pixmap == NULL) {
printf ("cannot open %s\n", file);
exit(1);
@@ -18,7 +18,7 @@
if (masked == SEP_MASK) {
sprintf(file, "%s/%s_mask.xpm", dir, name);
pixmap = gdk_pixmap_colormap_create_from_xpm(ui.display, ui.colormap,
- &mask, NULL, file);
+ &mask, (GdkColor *)NULL, file);
if (pixmap == NULL) {
printf("cannot open %s\n", file);
exit(1);