diff options
| author | Jan Kratochvil <[email protected]> | 2013-11-14 20:55:41 +0100 |
|---|---|---|
| committer | Jan Kratochvil <[email protected]> | 2013-11-14 20:55:41 +0100 |
| commit | 1c1a53b657ef31b168928925884c01a7e4bcaf0c (patch) | |
| tree | f503e5d0198da257d482d7f9c4707e768be2b615 /libebl/libebl.h | |
| parent | ed78237ef7c31fb1d7dc80e2c2e07484e1216727 (diff) | |
Code cleanup: Remove const in prototype
Signed-off-by: Jan Kratochvil <[email protected]>
Diffstat (limited to 'libebl/libebl.h')
| -rw-r--r-- | libebl/libebl.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libebl/libebl.h b/libebl/libebl.h index 622f9e8d..045a1980 100644 --- a/libebl/libebl.h +++ b/libebl/libebl.h @@ -384,10 +384,8 @@ extern int ebl_auxv_info (Ebl *ebl, GElf_Xword a_type, __nonnull_attribute__ (1, 3, 4); /* Callback type for ebl_set_initial_registers_tid. */ -typedef bool (ebl_tid_registers_t) (const int firstreg, - unsigned nregs, - const Dwarf_Word *regs, - void *arg) +typedef bool (ebl_tid_registers_t) (int firstreg, unsigned nregs, + const Dwarf_Word *regs, void *arg) __nonnull_attribute__ (3); /* Callback to fetch process data from live TID. |
