summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@apple.com>2011-04-29 11:06:18 -0700
committerJeremy Huddleston <jeremyhu@apple.com>2011-05-04 18:39:04 -0700
commitc52a93c5398e439e6e1d9e8ee20c6c1cf28dd5de (patch)
tree4688d2fbfe56ca3c0981bd6f6b840bbd6d87bdcf
parent7688d6d317f809028394ea6c5ffa31424e853796 (diff)
XQuartz: Fix incorrect typedefs with XPLUGIN_VERSION < 4
Ok, this time for sure... how many brown bags can I fit over my face? Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> (cherry picked from commit 0fc7ec6dd504aa03e1a1b18c60942c0c8c8b701b)
-rw-r--r--hw/xquartz/applewmExt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xquartz/applewmExt.h b/hw/xquartz/applewmExt.h
index 35c8f8f6d..c46a7bde4 100644
--- a/hw/xquartz/applewmExt.h
+++ b/hw/xquartz/applewmExt.h
@@ -35,9 +35,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <Xplugin.h>
#if XPLUGIN_VERSION < 4
-typedef xp_frame_attr int;
-typedef xp_frame_class int;
-typedef xp_frame_rect int;
+typedef int xp_frame_attr;
+typedef int xp_frame_class;
+typedef int xp_frame_rect;
#endif
typedef int (*DisableUpdateProc)(void);