diff options
author | Matt Johnston <matt@ucc.asn.au> | 2014-07-27 22:55:29 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2014-07-27 22:55:29 +0800 |
commit | 923fc9087c10a7a2bf4941e3e25f20229b3e5eec (patch) | |
tree | a8a5ef8f3483d93f2493d26d235d0445073f823c /svr-runopts.c | |
parent | 83511fecc0d235cbf7173faf788c934e13c5877f (diff) |
- Don't use multichar constants since recent gcc complains
- Add release script
- Simplify print_version
Diffstat (limited to 'svr-runopts.c')
-rw-r--r-- | svr-runopts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svr-runopts.c b/svr-runopts.c index ad946bc..8380de3 100644 --- a/svr-runopts.c +++ b/svr-runopts.c @@ -268,7 +268,7 @@ void svr_getopts(int argc, char ** argv) { break; #endif case 'V': - print_version("server"); + print_version(); exit(EXIT_SUCCESS); break; default: |