CLEANUP: code style: use tabs to indent codes instead of spaces

Signed-off-by: Godbach <nylzhaowei@gmail.com>
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 124ad24..d4893a1 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -2998,10 +2998,10 @@
 			else if (strcmp(args[myidx], "peers") == 0) {
 				myidx++;
 				if (!*(args[myidx])) {
-				        Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n",
-				              file, linenum, args[myidx-1]);
-				        err_code |= ERR_ALERT | ERR_FATAL;
-				        goto out;
+					Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n",
+					      file, linenum, args[myidx-1]);
+					err_code |= ERR_ALERT | ERR_FATAL;
+					goto out;
 				}
 				curproxy->table.peers.name = strdup(args[myidx++]);
 			}