tracing: storage class should be before const qualifier
The C99 specification states in section 6.11.5: The placement of a storage-class specifier other than at the beginning of the declaration specifiers in a declaration is an obsolescent feature. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Steven Rostedt <srostedt@redhat.com>
This commit is contained in:
parent
966657883f
commit
4543ae7ce1
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ static void backtrace_address(void *data, unsigned long addr, int reliable)
|
|||
}
|
||||
}
|
||||
|
||||
const static struct stacktrace_ops backtrace_ops = {
|
||||
static const struct stacktrace_ops backtrace_ops = {
|
||||
.warning = backtrace_warning,
|
||||
.warning_symbol = backtrace_warning_symbol,
|
||||
.stack = backtrace_stack,
|
||||
|
|
Loading…
Reference in a new issue