btrfs-progs: updated and add missing function attributes to the definition
authorDavid Sterba <dsterba@suse.com>
Sat, 23 Sep 2017 19:08:43 +0000 (21:08 +0200)
committerDavid Sterba <dsterba@suse.com>
Mon, 25 Sep 2017 13:18:32 +0000 (15:18 +0200)
Reported by sparse. Make the prototype match the definition and put the
attributes before the function.

Signed-off-by: David Sterba <dsterba@suse.com>
btrfs-map-logical.c
help.c
help.h

index 9d04995..7a8bcff 100644 (file)
@@ -190,7 +190,7 @@ static int write_extent_content(struct btrfs_fs_info *fs_info, int out_fd,
        return ret;
 }
 
-static void print_usage(void) __attribute__((noreturn));
+__attribute__((noreturn))
 static void print_usage(void)
 {
        printf("usage: btrfs-map-logical [options] device\n");
diff --git a/help.c b/help.c
index 19b0d35..99097db 100644 (file)
--- a/help.c
+++ b/help.c
@@ -218,6 +218,7 @@ void usage_command(const struct cmd_struct *cmd, int full, int err)
        usage_command_usagestr(cmd->usagestr, cmd->token, full, err);
 }
 
+__attribute__((noreturn))
 void usage(const char * const *usagestr)
 {
        usage_command_usagestr(usagestr, NULL, 1, 1);
@@ -325,6 +326,7 @@ void usage_command_group(const struct cmd_group *grp, int full, int err)
                fprintf(outf, "%s\n", grp->infostr);
 }
 
+__attribute__((noreturn))
 void help_unknown_token(const char *arg, const struct cmd_group *grp)
 {
        fprintf(stderr, "%s: unknown token '%s'\n", get_argv0_buf(), arg);
@@ -332,6 +334,7 @@ void help_unknown_token(const char *arg, const struct cmd_group *grp)
        exit(1);
 }
 
+__attribute__((noreturn))
 void help_ambiguous_token(const char *arg, const struct cmd_group *grp)
 {
        const struct cmd_struct *cmd = grp->commands;
diff --git a/help.h b/help.h
index 7458e74..efeded3 100644 (file)
--- a/help.h
+++ b/help.h
 struct cmd_struct;
 struct cmd_group;
 
-void usage(const char * const *usagestr) __attribute__((noreturn));
+__attribute__((noreturn))
+void usage(const char * const *usagestr);
 void usage_command(const struct cmd_struct *cmd, int full, int err);
 void usage_command_group(const struct cmd_group *grp, int all, int err);
 void usage_command_group_short(const struct cmd_group *grp);
 
-void help_unknown_token(const char *arg, const struct cmd_group *grp) __attribute__((noreturn));
-void help_ambiguous_token(const char *arg, const struct cmd_group *grp) __attribute__((noreturn));
+__attribute__((noreturn))
+void help_unknown_token(const char *arg, const struct cmd_group *grp);
+__attribute__((noreturn))
+void help_ambiguous_token(const char *arg, const struct cmd_group *grp);
 
 void help_command_group(const struct cmd_group *grp, int argc, char **argv);