diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2012-03-24 17:15:14 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2012-03-24 17:15:14 +0000 |
commit | 3908bcde0b032512c3a516524c4010e7df5af3fe (patch) | |
tree | 7935a8bfe7ad08608e4170adc92d8aa51f659357 /src/htshelp.c | |
parent | 5cca0d9154d5a3cb1302cd88bda9b2016a8c702e (diff) |
Replaced exit(1) by abort()
* fixed lintian shlib-calls-exit
Diffstat (limited to 'src/htshelp.c')
-rw-r--r-- | src/htshelp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htshelp.c b/src/htshelp.c index d1b4a7f..1ede58c 100644 --- a/src/htshelp.c +++ b/src/htshelp.c @@ -262,7 +262,7 @@ void help_wizard(httrackp* opt) { linput(stdin,str,250); if (strnotempty(str)) { if (!((str[0]=='y') || (str[0]=='Y'))) - exit(0); + return 0; } printf("\n"); |