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:
H. Peter Anvin 2016-02-18 02:25:26 -08:00
parent 2be1050f93
commit a4973cf997
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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