diff options
author | dholland <dholland@pkgsrc.org> | 2008-09-08 09:41:50 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2008-09-08 09:41:50 +0000 |
commit | a5df0f9e9071e7d502a468c1af3155e5ade8a27d (patch) | |
tree | 800f5f105381455e6e1e446b10ec820fd3c9d843 /wm/wm2/patches | |
parent | 29b008a2d4a57710ff45bfb4416f34a6a6ba8d33 (diff) | |
download | pkgsrc-a5df0f9e9071e7d502a468c1af3155e5ade8a27d.tar.gz |
Fix broken 64-bit build.
Diffstat (limited to 'wm/wm2/patches')
-rw-r--r-- | wm/wm2/patches/patch-af | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/wm/wm2/patches/patch-af b/wm/wm2/patches/patch-af new file mode 100644 index 00000000000..987c3e2bc7b --- /dev/null +++ b/wm/wm2/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.1 2008/09/08 09:41:50 dholland Exp $ + +--- Client.C~ 1997-03-21 06:12:30.000000000 -0500 ++++ Client.C 2008-09-08 05:39:59.000000000 -0400 +@@ -410,7 +410,7 @@ int Client::getAtomProperty(Atom a, Atom + + x = *p; + XFree((void *)p); +- return (int)x; ++ return (int)(intptr_t)x; + } + + |