From 88287cae3534e802986343ceed57e041aa38ef20 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Sun, 14 Aug 2016 10:41:31 -0300 Subject: [PATCH] eeshow/delta.c (comp_fields_eq): remove redundant initialization --- eeshow/delta.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeshow/delta.c b/eeshow/delta.c index cde89c0..5243d4d 100644 --- a/eeshow/delta.c +++ b/eeshow/delta.c @@ -185,8 +185,8 @@ static bool comp_fields_eq(const struct comp_field *a, static bool sheet_fields_eq(const struct sheet_field *a, const struct sheet_field *b) { - const struct sheet_field *ta = a; - const struct sheet_field *tb = b; + const struct sheet_field *ta; + const struct sheet_field *tb; for (ta = a; ta; ta = ta->next) { for (tb = b; tb; tb = tb->next) {