about summary refs log tree commit diff
path: root/nscd
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2022-03-10 17:16:56 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2022-03-23 15:33:17 -0300
commit06e91f1a2ebfb2d8a4ffa7285079c77ece20b6aa (patch)
tree8e2b6f64861a601a6e538cbffeff8d239ff4c245 /nscd
parent0374b487a71ad07005a816191dca829a7e6cdcae (diff)
downloadglibc-06e91f1a2ebfb2d8a4ffa7285079c77ece20b6aa.tar.gz
glibc-06e91f1a2ebfb2d8a4ffa7285079c77ece20b6aa.tar.xz
glibc-06e91f1a2ebfb2d8a4ffa7285079c77ece20b6aa.zip
nscd: Remove unused variable
Diffstat (limited to 'nscd')
-rw-r--r--nscd/mem.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/nscd/mem.c b/nscd/mem.c
index 4523f8221c..66aa53ea01 100644
--- a/nscd/mem.c
+++ b/nscd/mem.c
@@ -218,12 +218,8 @@ gc (struct database_dyn *db)
 
   /* Determine the highest offset.  */
   BITMAP_T mask = HIGHBIT;
-  ref_t highref = (high * BITS - 1) * BLOCK_ALIGN;
   while ((mark[high - 1] & mask) == 0)
-    {
-      mask >>= 1;
-      highref -= BLOCK_ALIGN;
-    }
+    mask >>= 1;
 
   /* Now we can iterate over the MARK array and find bits which are not
      set.  These represent memory which can be recovered.  */