1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-01 03:22:01 +03:00

eeshow/delta.c (comp_fields_eq): remove redundant initialization

This commit is contained in:
Werner Almesberger 2016-08-14 10:41:31 -03:00
parent 57dbe2344c
commit 88287cae35

View File

@ -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) {