diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2011-09-09 01:16:37 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2011-09-09 01:16:37 +0000 |
commit | 4e347ced58ba2809d0631b34db81e001c577c360 (patch) | |
tree | 532e1e1d495ab6744da0c594b4c5a6320bfa4550 /x11/9box/files/patch-src__9box.c | |
parent | - Limit emacs vulnerability to > 21.* and <= 22.2 instead of just <= 22.2 (diff) |
Fix build with clang.
Diffstat (limited to 'x11/9box/files/patch-src__9box.c')
-rw-r--r-- | x11/9box/files/patch-src__9box.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x11/9box/files/patch-src__9box.c b/x11/9box/files/patch-src__9box.c new file mode 100644 index 000000000000..a3346b656043 --- /dev/null +++ b/x11/9box/files/patch-src__9box.c @@ -0,0 +1,30 @@ +--- src/9box.c.orig 2002-12-05 07:13:33.000000000 +0800 ++++ src/9box.c 2011-09-08 14:37:25.000000000 +0800 +@@ -20,6 +20,7 @@ + /* $Id: 9box.c,v 1.14 2002/07/29 13:02:59 benj Exp $ */ + + #include <stdio.h> ++#include <stdlib.h> + #include <X11/Xlib.h> + #include <X11/X.h> + #include <X11/cursorfont.h> +@@ -186,8 +187,8 @@ main (int argc, char ** argv) + Window root_return; + int x_return, y_return, width_return, height_return, border_width_return, depth_return; + XGetGeometry(box.dpy, box.win, &root_return, &x_return, +- &y_return, &width_return, &height_return, +- &border_width_return, &depth_return); ++ &y_return, (unsigned int *)&width_return, (unsigned int *)&height_return, ++ (unsigned int *)&border_width_return, (unsigned int *)&depth_return); + XMoveWindow(box.dpy, + box.boxed_windows[i]->button, i*BUTTON_DEFAULT_WIDTH, height_return-20); + XResizeWindow(box.dpy, box.boxed_windows[i]->client, +@@ -435,7 +436,7 @@ XButtonEvent *e; + + + +-Window ++void + reparent_window(Box * box) + { + Window win, win2; |