diff options
| author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-11-24 01:04:37 +0900 | 
|---|---|---|
| committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-11-25 21:04:11 +0900 | 
| commit | 2558c138aca75e5fc435e20fd37f0b0eea61bb65 (patch) | |
| tree | ddb82c38bc29bdb53d12f4e464d5a66a5d108e5b | |
| parent | aa915245005bdb45ccbc96964853b4a27646390f (diff) | |
| download | talos-op-linux-2558c138aca75e5fc435e20fd37f0b0eea61bb65.tar.gz talos-op-linux-2558c138aca75e5fc435e20fd37f0b0eea61bb65.zip  | |
scripts/kallsyms: make find_token() return (unsigned char *)
The callers of this function expect (unsigned char *). I do not see
a good reason to make this function return (void *).
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
| -rw-r--r-- | scripts/kallsyms.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index 89cc7c098c51..274a77bfbd63 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c @@ -503,7 +503,8 @@ static void build_initial_tok_table(void)  		learn_symbol(table[i].sym, table[i].len);  } -static void *find_token(unsigned char *str, int len, unsigned char *token) +static unsigned char *find_token(unsigned char *str, int len, +				 unsigned char *token)  {  	int i;  | 

