diff options
| author | Michael Neuling <mikey@neuling.org> | 2018-05-24 16:42:43 +1000 |
|---|---|---|
| committer | Alistair Popple <alistair@popple.id.au> | 2018-05-24 22:38:07 +1000 |
| commit | 06b020e4587ad53464ae5f70b35440d22410f209 (patch) | |
| tree | d290e1d2689121524390c853c9c0da5105c65e95 /src | |
| parent | 48bd02f6ad406ee3472e05b3ee8f61826bb839c3 (diff) | |
| download | pdbg-06b020e4587ad53464ae5f70b35440d22410f209.tar.gz pdbg-06b020e4587ad53464ae5f70b35440d22410f209.zip | |
main: Exit 0 when printing version
Signed-off-by: Michael Neuling <mikey@neuling.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -277,7 +277,7 @@ static bool parse_options(int argc, char *argv[]) case 'V': printf("%s (commit %s)\n", PACKAGE_STRING, GIT_SHA1); - exit(1); + exit(0); break; case 'E': |

