fix compiler warnings

This commit is contained in:
2026-02-20 12:44:18 -06:00
parent 54e5be0773
commit c0aff9e9bf
13 changed files with 33 additions and 24 deletions

View File

@@ -43,11 +43,11 @@ static uint gvntbln;
static Ins *
gvndup(Ins *i, int insert)
{
uint idx, n;
uint idx;
Ins *ii;
idx = ihash(i) % gvntbln;
for (n=1;; n++) {
for (;;) {
ii = gvntbl[idx];
if (!ii)
break;