changeset 718:50c30f624bbd

Whitespace cleanup.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 09 Feb 2009 16:03:55 +0200
parents c8648efaebba
children cab9d2b182e8
files src/xs_title.c
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/src/xs_title.c	Mon Feb 09 16:03:26 2009 +0200
+++ b/src/xs_title.c	Mon Feb 09 16:03:55 2009 +0200
@@ -51,17 +51,17 @@
 
 /* Create a title string based on given information and settings.
  */
-#define VPUTCH(MCH)    \
+#define VPUTCH(MCH) \
     if (index < XS_BUF_SIZE) tmpBuf[index++] = MCH;
 
-#define VPUTSTR(MSTR) {                        \
-    if (MSTR != NULL) {                        \
-        if ((index + strlen(MSTR) + 1) < XS_BUF_SIZE) {\
-            strcpy(&tmpBuf[index], MSTR);        \
-            index += strlen(MSTR);         \
-        } else                        \
-            index = XS_BUF_SIZE;            \
-    }                            \
+#define VPUTSTR(MSTR) {                                 \
+    if (MSTR != NULL) {                                 \
+        if ((index + strlen(MSTR) + 1) < XS_BUF_SIZE) { \
+            strcpy(&tmpBuf[index], MSTR);               \
+            index += strlen(MSTR);                      \
+        } else                                          \
+            index = XS_BUF_SIZE;                        \
+    }                                                   \
 }