diff options
author | portix <portix@gmx.net> | 2013-05-15 21:24:13 +0200 |
---|---|---|
committer | portix <portix@gmx.net> | 2013-05-15 21:24:13 +0200 |
commit | 71de3175729dfd1a486983b33b599397842ba909 (patch) | |
tree | 0d0be7f359d7529134c54a668f8c8ac59162a6ca | |
parent | 1bff1080c880407262c8bd207fd35986517cb299 (diff) | |
download | dwb-71de3175729dfd1a486983b33b599397842ba909.zip |
Copyright date in exar, fixing false return value in main
-rw-r--r-- | tools/exar/exar.c | 2 | ||||
-rw-r--r-- | tools/exar/exar.h | 2 | ||||
-rw-r--r-- | tools/exar/main.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tools/exar/exar.c b/tools/exar/exar.c index ca4d46a9..1ad73477 100644 --- a/tools/exar/exar.c +++ b/tools/exar/exar.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2013 Stefan Bolte <portix@gmx.net> + * Copyright (c) 2013 Stefan Bolte <portix@gmx.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/exar/exar.h b/tools/exar/exar.h index 26d3997b..d6e34426 100644 --- a/tools/exar/exar.h +++ b/tools/exar/exar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2013 Stefan Bolte <portix@gmx.net> + * Copyright (c) 2013 Stefan Bolte <portix@gmx.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tools/exar/main.c b/tools/exar/main.c index 59333f3d..69069f0f 100644 --- a/tools/exar/main.c +++ b/tools/exar/main.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2013 Stefan Bolte <portix@gmx.net> + * Copyright (c) 2013 Stefan Bolte <portix@gmx.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -113,7 +113,7 @@ main (int argc, char **argv) exar_cat(argv[2], argv[3]); } else - help(EXIT_SUCCESS); + help(EXIT_FAILURE); return EXIT_SUCCESS; } |