From: Godbach Date: Mon, 21 Apr 2014 13:52:23 +0000 (+0800) Subject: CLEANUP: code style: use tabs to indent codes instead of spaces X-Git-Tag: v1.5-dev23~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ff11554c15e6a2be48665c55af37f7175d342109;p=thirdparty%2Fhaproxy.git CLEANUP: code style: use tabs to indent codes instead of spaces Signed-off-by: Godbach --- diff --git a/src/cfgparse.c b/src/cfgparse.c index 124ad242ec..d4893a1345 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++]); }