lkml.org 
[lkml]   [2018]   [Apr]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] scripts : sync the var type between memory and print
Date
From: Wenle Chen <chenwenle@huawei.com>

The %d in printf need get a int
But the real type of these vars is unsigned.
It may let some compilers show a warning.

Signed-off-by: Wenle Chen <chenwenle@huawei.com>
---
scripts/recordmcount.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/recordmcount.c b/scripts/recordmcount.c
index 8c9691c..6f900fa 100644
--- a/scripts/recordmcount.c
+++ b/scripts/recordmcount.c
@@ -459,7 +459,7 @@ do_file(char const *const fname)
switch (ehdr->e_ident[EI_DATA]) {
static unsigned int const endian = 1;
default:
- fprintf(stderr, "unrecognized ELF data encoding %d: %s\n",
+ fprintf(stderr, "unrecognized ELF data encoding %u: %s\n",
ehdr->e_ident[EI_DATA], fname);
fail_file();
break;
@@ -500,7 +500,7 @@ do_file(char const *const fname)
gpfx = 0;
switch (w2(ehdr->e_machine)) {
default:
- fprintf(stderr, "unrecognized e_machine %d %s\n",
+ fprintf(stderr, "unrecognized e_machine %u %s\n",
w2(ehdr->e_machine), fname);
fail_file();
break;
@@ -541,7 +541,7 @@ do_file(char const *const fname)

switch (ehdr->e_ident[EI_CLASS]) {
default:
- fprintf(stderr, "unrecognized ELF class %d %s\n",
+ fprintf(stderr, "unrecognized ELF class %u %s\n",
ehdr->e_ident[EI_CLASS], fname);
fail_file();
break;
--
2.7.4

\
 
 \ /
  Last update: 2018-04-07 12:03    [W:0.039 / U:0.080 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site