From 5ee755fabb3d1a5e4760c05e48c26567a5f4b3ca Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 24 Nov 2022 17:43:07 +1030 Subject: [PATCH] Constify nm format array * nm.c (formats, format): Make const. --- binutils/nm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/binutils/nm.c b/binutils/nm.c index 49726eeb83b..9aad599a9a2 100644 --- a/binutils/nm.c +++ b/binutils/nm.c @@ -141,7 +141,7 @@ enum formats #define FORMAT_DEFAULT FORMAT_BSD -static struct output_fns formats[FORMAT_MAX] = +static const struct output_fns formats[FORMAT_MAX] = { {print_object_filename_bsd, print_archive_filename_bsd, @@ -167,7 +167,7 @@ static struct output_fns formats[FORMAT_MAX] = /* The output format to use. */ -static struct output_fns *format = &formats[FORMAT_DEFAULT]; +static const struct output_fns *format = &formats[FORMAT_DEFAULT]; static unsigned int print_format = FORMAT_DEFAULT; static const char *print_format_string = NULL; -- 2.30.2