cbtables.c/search_lb_records: Drop unused variable `count`

Clang 15 complains about it. Remove it.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
Change-Id: I340208f513bed57a9cc2bba880a2400352c5cc42
Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/70247
Original-Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Original-Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/71498
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/cbtable.c b/cbtable.c
index 5fd1ffe..d3106a3 100644
--- a/cbtable.c
+++ b/cbtable.c
@@ -295,13 +295,10 @@
 static void search_lb_records(struct lb_record *rec, struct lb_record *last, unsigned long addr)
 {
 	struct lb_record *next;
-	int count;
-	count = 0;
 
 	for (next = next_record(rec); (rec < last) && (next <= last);
 	     rec = next, addr += rec->size) {
 		next = next_record(rec);
-		count++;
 		if (rec->tag == LB_TAG_MAINBOARD) {
 			find_mainboard(rec, addr);
 			break;