From b1dc1306b13e1a67f0b2d83fc98215ae35305366 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Fri, 16 Dec 2005 21:27:16 +0000
Subject: [PATCH] Fix the XP_PRINTF_CONVERT macro.

---
 src/xpdev/xpprintf.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xpdev/xpprintf.h b/src/xpdev/xpprintf.h
index 66373f5c86..19bf2cc082 100644
--- a/src/xpdev/xpprintf.h
+++ b/src/xpdev/xpprintf.h
@@ -24,7 +24,7 @@
 #define XP_PRINTF_TYPE_PTRDIFF		13	/* Not currently implemented */
 #define XP_PRINTF_TYPE_SIZET		14
 
-#define XP_PRINTF_CONVERT		1<<31	/* OR with type to request a conversion - Not implemented */
+#define XP_PRINTF_CONVERT		(1<<31)	/* OR with type to request a conversion - Not implemented */
 
 #if defined(__cplusplus)
 extern "C" {
-- 
GitLab