diff --git a/src/xpdev/xpprintf.c b/src/xpdev/xpprintf.c
index 7ed05eb06a5348652771a04add0e8fa7b2adb668..f7d2dc2bf09cbc0212b3f4aa43bdf4d1d28fc285 100644
--- a/src/xpdev/xpprintf.c
+++ b/src/xpdev/xpprintf.c
@@ -6,8 +6,10 @@
 #include "xpprintf.h"
 
 /* MSVC Sucks - can't tell the required len of a *printf() */
-#define MAX_ARG_LEN		1024			/* MAX_ARG_LEN is the maximum length possible as a result of a format which
-										 * is not %s */
+#define MAX_ARG_LEN		1024			/* MAX_ARG_LEN is the maximum length
+										 * possible as a result of a format
+										 * which is not %s
+										 */
 
 /* Maximum length of a format specifier including the % */
 #define MAX_FORMAT_LEN	256