summaryrefslogtreecommitdiff
path: root/games/xflame
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2011-09-05 11:59:52 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2011-09-05 11:59:52 +0000
commitaa8a21f3cc105e195b9b6d276f0f53957a15be8f (patch)
tree8e3d9aab001fbb63dde72cdfa9ff11f8e87ff48c /games/xflame
parent- update to 3.4.3 (diff)
Fix build error with clang.
Notes
Notes: svn path=/head/; revision=281229
Diffstat (limited to 'games/xflame')
-rw-r--r--games/xflame/files/patch-xflame.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/games/xflame/files/patch-xflame.c b/games/xflame/files/patch-xflame.c
new file mode 100644
index 000000000000..1d90a80622af
--- /dev/null
+++ b/games/xflame/files/patch-xflame.c
@@ -0,0 +1,42 @@
+--- xflame.c.orig 1998-12-16 15:28:03.000000000 +0800
++++ xflame.c 2011-09-05 14:57:44.000000000 +0800
+@@ -28,6 +28,8 @@
+
+ /* INCLUDES! */
+ #include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
+ #include <unistd.h>
+ #include <X11/Xlib.h>
+ #include <X11/Xutil.h>
+@@ -452,18 +454,18 @@ int SetupXImage(struct globaldata *g,int
+ /*to the window, to speedup drawing, and give us Double Buffering */
+ int hbits,hs;
+ int imsize;
+- unsigned char *im;
++ unsigned char *im;
+
+ hbits=powerof(w);
+ hs=(1<<hbits);
+ /* calculate the memory needed for the image data */
+ imsize=hs*h*g->depth;
+ /* allocate the memory for the image data */
+- im=(char *)malloc(imsize);
++ im=(unsigned char *)malloc(imsize);
+ /* if we couldn't allocate the memory, return 0 */
+ if (!im) return 0;
+ /* create the XImage from the data */
+- g->xim=XCreateImage(g->disp,g->vis,g->depth,ZPixmap,0,im,hs,h,32,0);
++ g->xim=XCreateImage(g->disp,g->vis,g->depth,ZPixmap,0,(char *)im,hs,h,32,0);
+ g->im=im;
+ g->ims=hbits;
+ XMapWindow(g->disp,g->win);
+@@ -881,7 +883,7 @@ int Xflame(struct globaldata *g,int w, i
+ }
+
+ /* Here's the MAIN part of the program */
+-void main(int argc, char **argv)
++int main(int argc, char **argv)
+ {
+ struct globaldata glob;
+ char disp[256],colorspec[256],title[80];