diff options
author | Simon Josefsson <simon@josefsson.org> | 2010-04-13 10:35:12 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2010-04-13 10:35:12 +0200 |
commit | f97a808246843a1be3e0c23a47c65912c7f9e6b8 (patch) | |
tree | 5bddd8f03eb4f34dfc24ef69681f0c5e2ab05a71 /src/asn1Coding.c | |
parent | 5a3c3a8f2848d55b946bb70cffbc648bf38e4879 (diff) | |
download | libtasn1-f97a808246843a1be3e0c23a47c65912c7f9e6b8.tar.gz libtasn1-f97a808246843a1be3e0c23a47c65912c7f9e6b8.tar.bz2 libtasn1-f97a808246843a1be3e0c23a47c65912c7f9e6b8.zip |
Indent code.
Diffstat (limited to 'src/asn1Coding.c')
-rw-r--r-- | src/asn1Coding.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/asn1Coding.c b/src/asn1Coding.c index 28c2f7d..4d86caf 100644 --- a/src/asn1Coding.c +++ b/src/asn1Coding.c @@ -39,13 +39,11 @@ # define ATTR_NO_RETRUN __attribute__ ((__noreturn__)) #endif -ATTR_NO_RETRUN -static void +ATTR_NO_RETRUN static void usage (int status) { if (status != EXIT_SUCCESS) - fprintf (stderr, "Try `%s --help' for more information.\n", - program_name); + fprintf (stderr, "Try `%s --help' for more information.\n", program_name); else { printf ("\ @@ -194,7 +192,7 @@ main (int argc, char *argv[]) } } - if (optind == argc || optind == argc -1) + if (optind == argc || optind == argc - 1) { free (outputFileName); fprintf (stderr, "asn1Coding: input files missing\n"); |