forked from github/server
indentation fixes
This commit is contained in:
parent
bf544ef1be
commit
8bf96a5726
1 changed files with 329 additions and 327 deletions
|
@ -94,9 +94,11 @@ dfindhash(int no)
|
|||
|
||||
if(no < 0) return 0;
|
||||
|
||||
for (old = deadhash[no % DMAXHASH]; old; old = old->nexthash)
|
||||
if (old->no == no)
|
||||
for (old = deadhash[no % DMAXHASH]; old; old = old->nexthash) {
|
||||
if (old->no == no) {
|
||||
return old->f;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue