summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2019-11-26 11:22:40 +0100
committerSimon Rettberg2019-11-26 11:22:40 +0100
commit8182396ae891f63a248caf84485e3f07477676e6 (patch)
treed06139642df4a24c866ea61a1f1bad70e8fea2d3
parentMove packet size overflow checking around (diff)
downloadjawol-8182396ae891f63a248caf84485e3f07477676e6.tar.gz
jawol-8182396ae891f63a248caf84485e3f07477676e6.tar.xz
jawol-8182396ae891f63a248caf84485e3f07477676e6.zip
Add missing return statementv26
-rw-r--r--jawol.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/jawol.c b/jawol.c
index d604455..8c06878 100644
--- a/jawol.c
+++ b/jawol.c
@@ -147,6 +147,7 @@ int main(int argc, char **argv)
}
if ( parse_errors != 0 ) {
fprintf( stderr, "Try %s --help.\n", argv[0] );
+ return 1;
}
// Seems we're somewhat prepared to go
if ( !gotip ) {