From d8b71ebc9104723540a8e9d4f7780a5bf659ecc0 Mon Sep 17 00:00:00 2001
From: Serge Lamikhov-Center <to_serge@hotmail.com>
Date: Mon, 14 Nov 2022 16:33:50 +0200
Subject: [PATCH] Make more const variables

---
 tests/ELFIOTest.cpp | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/ELFIOTest.cpp b/tests/ELFIOTest.cpp
index 9003b0b..fa2d62c 100644
--- a/tests/ELFIOTest.cpp
+++ b/tests/ELFIOTest.cpp
@@ -321,7 +321,7 @@ TEST( ELFIOTest, load64 )
 
         ////////////////////////////////////////////////////////////////////////////
         // Check sections
-        section* sec = reader.sections[0];
+        const section* sec = reader.sections[0];
 
         checkSection( sec, 0, "", SHT_NULL, 0, 0, 0, 0, 0, 0, 0 );
 
@@ -350,7 +350,7 @@ TEST( ELFIOTest, load64 )
 
         ////////////////////////////////////////////////////////////////////////////
         // Check segments
-        segment* seg = reader.segments[0];
+        const segment* seg = reader.segments[0];
         checkSegment( seg, PT_PHDR, 0x0000000000400040, 0x0000000000400040,
                       0x00000000000001c0, 0x00000000000001c0, PF_R + PF_X, 8 );
 
@@ -744,7 +744,7 @@ TEST( ELFIOTest, test_dummy_out_i386_32 )
                  EV_CURRENT, 0x80482b0, 0, 3, 0, 0, 0 );
     ////////////////////////////////////////////////////////////////////////////
     // Check sections
-    section* sec = reader.sections[""];
+    const section* sec = reader.sections[""];
 
     checkSection( sec, 0, "", SHT_NULL, 0, 0, 0, 0, 0, 0, 0 );
 
@@ -797,7 +797,7 @@ TEST( ELFIOTest, test_dummy_out_ppc_32 )
                  EV_CURRENT, 0x80482b0, 0, 3, 0, 0, 0 );
     ////////////////////////////////////////////////////////////////////////////
     // Check sections
-    section* sec = reader.sections[""];
+    const section* sec = reader.sections[""];
 
     checkSection( sec, 0, "", SHT_NULL, 0, 0, 0, 0, 0, 0, 0 );
 
@@ -850,7 +850,7 @@ TEST( ELFIOTest, test_dummy_out_i386_64 )
                  EV_CURRENT, 0x120380482b0ULL, 0, 3, 0, 0, 0 );
     ////////////////////////////////////////////////////////////////////////////
     // Check sections
-    section* sec = reader.sections[""];
+    const section* sec = reader.sections[""];
 
     checkSection( sec, 0, "", SHT_NULL, 0, 0, 0, 0, 0, 0, 0 );
 
@@ -903,7 +903,7 @@ TEST( ELFIOTest, test_dummy_out_ppc_64 )
                  EV_CURRENT, 0x120380482b0ULL, 0, 3, 0, 0, 0 );
     ////////////////////////////////////////////////////////////////////////////
     // Check sections
-    section* sec = reader.sections[""];
+    const section* sec = reader.sections[""];
 
     checkSection( sec, 0, "", SHT_NULL, 0, 0, 0, 0, 0, 0, 0 );
 
-- 
GitLab