From c434b4aba7bfef2405c4d1879bcc4cb9aff21a08 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 9 Jan 2018 00:06:00 +0000 Subject: constified git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- dln.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dln.c') diff --git a/dln.c b/dln.c index 9b82493019..6791578063 100644 --- a/dln.c +++ b/dln.c @@ -232,13 +232,13 @@ load_header(int fd, struct exec *hdrp, long disp) # define R_RIGHTSHIFT(r) (reloc_r_rightshift[(r)->r_type]) # define R_BITSIZE(r) (reloc_r_bitsize[(r)->r_type]) # define R_LENGTH(r) (reloc_r_length[(r)->r_type]) -static int reloc_r_rightshift[] = { +static const int reloc_r_rightshift[] = { 0, 0, 0, 0, 0, 0, 2, 2, 10, 0, 0, 0, 0, 0, 0, }; -static int reloc_r_bitsize[] = { +static const int reloc_r_bitsize[] = { 8, 16, 32, 8, 16, 32, 30, 22, 22, 22, 13, 10, 32, 32, 16, }; -static int reloc_r_length[] = { +static const int reloc_r_length[] = { 0, 1, 2, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }; # define R_PCREL(r) \ -- cgit v1.2.3