diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2007-07-31 20:24:22 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2007-07-31 20:24:22 +0000 |
commit | 0544a4fe18948556c307aa5eb56c7834ed424ba9 (patch) | |
tree | 8aa364c8999255069a0b48544fdff09ea9e273ca /x11-wm/wm2/files/patch-Client.C | |
parent | Fix build on 64bit Platforms (diff) |
Fix build with gcc41
Notes
Notes:
svn path=/head/; revision=196853
Diffstat (limited to 'x11-wm/wm2/files/patch-Client.C')
-rw-r--r-- | x11-wm/wm2/files/patch-Client.C | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-wm/wm2/files/patch-Client.C b/x11-wm/wm2/files/patch-Client.C new file mode 100644 index 000000000000..05f6a7d6d028 --- /dev/null +++ b/x11-wm/wm2/files/patch-Client.C @@ -0,0 +1,11 @@ +--- Client.C.orig 2007-07-31 22:18:48.000000000 +0200 ++++ Client.C 2007-07-31 22:19:06.000000000 +0200 +@@ -410,7 +410,7 @@ + + x = *p; + XFree((void *)p); +- return (int)x; ++ return (intptr_t)x; + } + + |