mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Use designated initialisers for the db disassembler interface to help with
finding the struct when searching for one of its members.
This commit is contained in:
parent
e8b8ec6836
commit
f75ef22a66
1 changed files with 3 additions and 3 deletions
|
|
@ -41,9 +41,9 @@ static void db_disasm_printaddr(vm_offset_t);
|
|||
|
||||
/* Glue code to interface db_disasm to the generic ARM disassembler */
|
||||
static const struct disasm_interface db_disasm_interface = {
|
||||
db_disasm_read_word,
|
||||
db_disasm_printaddr,
|
||||
db_printf
|
||||
.di_readword = db_disasm_read_word,
|
||||
.di_printaddr = db_disasm_printaddr,
|
||||
.di_printf = db_printf,
|
||||
};
|
||||
|
||||
static u_int
|
||||
|
|
|
|||
Loading…
Reference in a new issue