diff options
author | F. Aragon <paco@voltanet.io> | 2018-09-13 17:37:08 +0200 |
---|---|---|
committer | F. Aragon <paco@voltanet.io> | 2018-09-13 17:37:08 +0200 |
commit | 7fe96307ee288bd28a54ba4ddfa559a1cf07bb7f (patch) | |
tree | 43c78be92e26fe2a6adcc231c18ba869e0fb1ccf /lib/termtable.c | |
parent | Merge pull request #3007 from pacovn/static_analysis__shadow_variables2 (diff) | |
download | frr-7fe96307ee288bd28a54ba4ddfa559a1cf07bb7f.tar.xz frr-7fe96307ee288bd28a54ba4ddfa559a1cf07bb7f.zip |
bgpd lib ospf6d pbrd tests zebra: shadowing fixes
This fixes all remaining local variable shadowing cases
Signed-off-by: F. Aragon <paco@voltanet.io>
Diffstat (limited to 'lib/termtable.c')
-rw-r--r-- | lib/termtable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/termtable.c b/lib/termtable.c index 7bdb1ff87..4f5f9ff21 100644 --- a/lib/termtable.c +++ b/lib/termtable.c @@ -140,8 +140,8 @@ static struct ttable_cell *ttable_insert_row_va(struct ttable *tt, int i, int ncols = 0; /* count how many columns we have */ - for (int i = 0; format[i]; i++) - ncols += !!(format[i] == '|'); + for (int j = 0; format[j]; j++) + ncols += !!(format[j] == '|'); ncols++; if (tt->ncols == 0) @@ -459,7 +459,7 @@ char *ttable_dump(struct ttable *tt, const char *newline) memcpy(&buf[pos], left, lsize); pos += lsize; - for (size_t i = 0; i < width - lsize - rsize; i++) + for (size_t l = 0; l < width - lsize - rsize; l++) buf[pos++] = row[0].style.border.bottom; pos -= width - lsize - rsize; |