commit | 957d12028e6a15cbbb42beab3dfe27445133998a | [log] [tgz] |
---|---|---|
author | Ryan O'Hara <rohara@redhat.com> | Fri Dec 15 10:21:29 2017 -0600 |
committer | Willy Tarreau <w@1wt.eu> | Wed Dec 20 09:36:58 2017 +0100 |
tree | a0836f67085a568d3185afd011902985029da434 | |
parent | aec8989e5303a33cdb100d30605ab55daa580058 [diff] |
CONTRIB: iprange: Fix compiler warning in iprange.c The declaration of main() in iprange.c did not specify a type, causing a compiler warning [-Wimplicit-int]. This patch simply declares main() to be type 'int' and calls exit(0) at the end of the function.