diff options
Diffstat (limited to 'miscutils')
| -rw-r--r-- | miscutils/getfattr.c | 2 | ||||
| -rw-r--r-- | miscutils/makedevs.c | 2 | ||||
| -rw-r--r-- | miscutils/setfattr.c | 2 | ||||
| -rw-r--r-- | miscutils/strings.c | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/miscutils/getfattr.c b/miscutils/getfattr.c index 905aec65f..cb42fdac0 100644 --- a/miscutils/getfattr.c +++ b/miscutils/getfattr.c | |||
| @@ -77,7 +77,7 @@ int getfattr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | |||
| 77 | int getfattr_main(int argc UNUSED_PARAM, char **argv) | 77 | int getfattr_main(int argc UNUSED_PARAM, char **argv) |
| 78 | { | 78 | { |
| 79 | const char *name; | 79 | const char *name; |
| 80 | int status; | 80 | exitcode_t status; |
| 81 | int opt; | 81 | int opt; |
| 82 | char *buf = NULL; | 82 | char *buf = NULL; |
| 83 | size_t bufsize = 0; | 83 | size_t bufsize = 0; |
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index 48be91875..999a3b976 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c | |||
| @@ -181,7 +181,7 @@ int makedevs_main(int argc UNUSED_PARAM, char **argv) | |||
| 181 | { | 181 | { |
| 182 | parser_t *parser; | 182 | parser_t *parser; |
| 183 | char *line = (char *)"-"; | 183 | char *line = (char *)"-"; |
| 184 | int ret = EXIT_SUCCESS; | 184 | exitcode_t ret = EXIT_SUCCESS; |
| 185 | 185 | ||
| 186 | getopt32(argv, "^" "d:" "\0" "=1", &line); | 186 | getopt32(argv, "^" "d:" "\0" "=1", &line); |
| 187 | argv += optind; | 187 | argv += optind; |
diff --git a/miscutils/setfattr.c b/miscutils/setfattr.c index 10d1840c9..b68bc9452 100644 --- a/miscutils/setfattr.c +++ b/miscutils/setfattr.c | |||
| @@ -32,7 +32,7 @@ int setfattr_main(int argc UNUSED_PARAM, char **argv) | |||
| 32 | { | 32 | { |
| 33 | const char *name; | 33 | const char *name; |
| 34 | const char *value = ""; | 34 | const char *value = ""; |
| 35 | int status; | 35 | exitcode_t status; |
| 36 | int opt; | 36 | int opt; |
| 37 | enum { | 37 | enum { |
| 38 | OPT_h = (1 << 0), | 38 | OPT_h = (1 << 0), |
diff --git a/miscutils/strings.c b/miscutils/strings.c index 036df5c5d..bd1850cbb 100644 --- a/miscutils/strings.c +++ b/miscutils/strings.c | |||
| @@ -40,7 +40,8 @@ | |||
| 40 | int strings_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 40 | int strings_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 41 | int strings_main(int argc UNUSED_PARAM, char **argv) | 41 | int strings_main(int argc UNUSED_PARAM, char **argv) |
| 42 | { | 42 | { |
| 43 | int n, c, status = EXIT_SUCCESS; | 43 | int n, c; |
| 44 | exitcode_t status = EXIT_SUCCESS; | ||
| 44 | unsigned count; | 45 | unsigned count; |
| 45 | off_t offset; | 46 | off_t offset; |
| 46 | FILE *file; | 47 | FILE *file; |
