mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
A few more debugging format arrays to mark const
Making more debugging format array const. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
parent
2be1050f93
commit
a4973cf997
2 changed files with 2 additions and 2 deletions
|
|
@ -1508,7 +1508,7 @@ static const struct dfmt ladsoft_debug_form = {
|
|||
dbgls_output,
|
||||
dbgls_cleanup,
|
||||
};
|
||||
static const struct dfmt *ladsoft_debug_arr[3] = {
|
||||
static const struct dfmt * const ladsoft_debug_arr[3] = {
|
||||
&ladsoft_debug_form,
|
||||
&null_debug_form,
|
||||
NULL
|
||||
|
|
|
|||
|
|
@ -2617,7 +2617,7 @@ static const struct dfmt borland_debug_form = {
|
|||
dbgbi_cleanup,
|
||||
};
|
||||
|
||||
static const struct dfmt *borland_debug_arr[3] = {
|
||||
static const struct dfmt * const borland_debug_arr[3] = {
|
||||
&borland_debug_form,
|
||||
&null_debug_form,
|
||||
NULL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue