diff options
author | Colin Ian King <colin.king@canonical.com> | 2015-12-30 18:06:41 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2016-01-04 11:13:16 -0500 |
commit | 713a3e4de707fab49d5aa4bceb77db1058572a7b (patch) | |
tree | aaad51c237cc5d39d6d7f6eb821654e5fd25fdfe /scripts | |
parent | a50bd43935586420fb75f4558369eb08566fac5e (diff) |
ftrace/scripts: Fix incorrect use of sprintf in recordmcount
Fix build warning:
scripts/recordmcount.c:589:4: warning: format not a string
literal and no format arguments [-Wformat-security]
sprintf("%s: failed\n", file);
Fixes: a50bd43935586 ("ftrace/scripts: Have recordmcount copy the object file")
Link: http://lkml.kernel.org/r/1451516801-16951-1-git-send-email-colin.king@canonical.com
Cc: Li Bin <huawei.libin@huawei.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Will Deacon <will.deacon@arm.com>
Cc: stable@vger.kernel.org # 2.6.37+
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/recordmcount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/recordmcount.c b/scripts/recordmcount.c index 301d70b0174f..e167592793a7 100644 --- a/scripts/recordmcount.c +++ b/scripts/recordmcount.c | |||
@@ -586,7 +586,7 @@ main(int argc, char *argv[]) | |||
586 | do_file(file); | 586 | do_file(file); |
587 | break; | 587 | break; |
588 | case SJ_FAIL: /* error in do_file or below */ | 588 | case SJ_FAIL: /* error in do_file or below */ |
589 | sprintf("%s: failed\n", file); | 589 | fprintf(stderr, "%s: failed\n", file); |
590 | ++n_error; | 590 | ++n_error; |
591 | break; | 591 | break; |
592 | case SJ_SUCCEED: /* premature success */ | 592 | case SJ_SUCCEED: /* premature success */ |