]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: cfgparse: Remove unused label end
authorTim Duesterhus <tim@bastelstu.be>
Mon, 19 Feb 2018 23:49:43 +0000 (00:49 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 20 Feb 2018 07:30:12 +0000 (08:30 +0100)
This removes the end label from parse_process_number() which
is unused since 5ab51775e736511b7e54f42e080dcef76a284da9, which
first was released in haproxy 1.8.0.

src/cfgparse.c

index 40facd5da89caf1a9a2baf5ac516e578cc9c9c83..27d7eee7b4656e3ce3e4ca37e79609ba309f7abd 100644 (file)
@@ -662,7 +662,6 @@ int parse_process_number(const char *arg, unsigned long *proc, int *autoinc, cha
                        *proc |= 1UL << (low-1);
        }
 
-  end:
        return 0;
 }