diff options
author | Jim Meyering <meyering@redhat.com> | 2009-10-30 21:28:53 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-10-30 21:28:53 +0100 |
commit | 05ce774b82ca6f81cb10e4cc3514b38ad568d6e0 (patch) | |
tree | d9e57731f3cbfc07340af8a55d01718c001474c5 /src/mkid.c | |
parent | 926d89efdc7f4c578723d71de210aaafaf8bbae3 (diff) | |
download | idutils-05ce774b82ca6f81cb10e4cc3514b38ad568d6e0.tar.gz idutils-05ce774b82ca6f81cb10e4cc3514b38ad568d6e0.tar.bz2 idutils-05ce774b82ca6f81cb10e4cc3514b38ad568d6e0.zip |
build: accommodate new syntax-check test
Use EXIT_FAILURE and EXIT_SUCCESS, not 1 and 0.
Apply these commands:
perl -pi -e 's/\berror \(1,/error (EXIT_FAILURE,/' \
$(git grep -l '\<error (1,')
perl -pi -e 's/\bexit \(1\)/exit (EXIT_FAILURE)/' \
$(git grep -l '\<exit (1)')
perl -pi -e 's/\bexit \(0\)/exit (EXIT_SUCCESS)/' \
$(git grep -l '\<exit (0)')
* libidu/idread.c (read_id_file, maybe_read_id_file, io_read):
* libidu/idu-hash.c (hash_init):
* libidu/idwrite.c (io_write):
* libidu/scanners.c (parse_language_map, parse_language_map_file):
(read_language_map_file):
* libidu/walker.c (include_languages, exclude_languages):
(get_current_dir_link):
* src/fid.c (usage, help_me, main):
* src/fnid.c (usage, help_me, main):
* src/lid.c (usage, help_me, main, report_grep, report_edit):
(query_regexp):
* src/mkid.c (main, assert_writeable, write_id_file):
* src/xtokid.c (help_me):
Diffstat (limited to 'src/mkid.c')
-rw-r--r-- | src/mkid.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -290,7 +290,7 @@ main (int argc, char **argv) if (show_version) { printf ("%s - %s\n", program_name, PACKAGE_VERSION); - exit (0); + exit (EXIT_SUCCESS); } if (show_help) @@ -486,12 +486,12 @@ assert_writeable (char const *filename) { char *dirname = dir_name (filename); if (access (dirname, 06) < 0) - error (1, errno, _("can't create `%s' in `%s'"), + error (EXIT_FAILURE, errno, _("can't create `%s' in `%s'"), base_name (filename), dirname); free(dirname); } else - error (1, errno, _("can't modify `%s'"), filename); + error (EXIT_FAILURE, errno, _("can't modify `%s'"), filename); } } @@ -699,7 +699,7 @@ write_id_file (struct idhead *idhp) printf (_("Writing `%s'...\n"), idhp->idh_file_name); idhp->idh_FILE = fopen (idhp->idh_file_name, "w+b"); if (idhp->idh_FILE == NULL) - error (1, errno, _("can't create `%s'"), idhp->idh_file_name); + error (EXIT_FAILURE, errno, _("can't create `%s'"), idhp->idh_file_name); idhp->idh_magic[0] = IDH_MAGIC_0; idhp->idh_magic[1] = IDH_MAGIC_1; @@ -767,7 +767,7 @@ write_id_file (struct idhead *idhp) write_idhead (&idh); if (ferror (idhp->idh_FILE) || fclose (idhp->idh_FILE) != 0) - error (1, errno, _("error closing `%s'"), idhp->idh_file_name); + error (EXIT_FAILURE, errno, _("error closing `%s'"), idhp->idh_file_name); } /* Define primary and secondary hash and comparison functions for the |