From ff11554c15e6a2be48665c55af37f7175d342109 Mon Sep 17 00:00:00 2001 From: Godbach Date: Mon, 21 Apr 2014 21:52:23 +0800 Subject: [PATCH] CLEANUP: code style: use tabs to indent codes instead of spaces Signed-off-by: Godbach --- src/cfgparse.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cfgparse.c b/src/cfgparse.c index 124ad242e..d4893a134 100644 --- a/src/cfgparse.c +++ b/src/cfgparse.c @@ -2998,10 +2998,10 @@ int cfg_parse_listen(const char *file, int linenum, char **args, int kwm) 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++]); }