mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-26 13:16:21 +02:00
eeshow/delta.c (comp_fields_eq): remove redundant initialization
This commit is contained in:
parent
57dbe2344c
commit
88287cae35
@ -185,8 +185,8 @@ static bool comp_fields_eq(const struct comp_field *a,
|
|||||||
static bool sheet_fields_eq(const struct sheet_field *a,
|
static bool sheet_fields_eq(const struct sheet_field *a,
|
||||||
const struct sheet_field *b)
|
const struct sheet_field *b)
|
||||||
{
|
{
|
||||||
const struct sheet_field *ta = a;
|
const struct sheet_field *ta;
|
||||||
const struct sheet_field *tb = b;
|
const struct sheet_field *tb;
|
||||||
|
|
||||||
for (ta = a; ta; ta = ta->next) {
|
for (ta = a; ta; ta = ta->next) {
|
||||||
for (tb = b; tb; tb = tb->next) {
|
for (tb = b; tb; tb = tb->next) {
|
||||||
|
Loading…
Reference in New Issue
Block a user