From a4973cf997843e2bc2d1205a8bf0eb9092fcc91a Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 18 Feb 2016 02:25:26 -0800 Subject: A few more debugging format arrays to mark const Making more debugging format array const. Signed-off-by: H. Peter Anvin --- output/outieee.c | 2 +- output/outobj.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outieee.c b/output/outieee.c index e290e038..05624657 100644 --- a/output/outieee.c +++ b/output/outieee.c @@ -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 diff --git a/output/outobj.c b/output/outobj.c index f8b35c94..433fc2a2 100644 --- a/output/outobj.c +++ b/output/outobj.c @@ -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 -- cgit v1.2.1