mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 04:43:32 +00:00
one file somehow slipped by me in the previous commit
tidy up
This commit is contained in:
parent
58db4b5a8f
commit
6439f56e80
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17341
@ -136,7 +136,8 @@ forward(fp, style, off, sbp)
|
||||
return;
|
||||
}
|
||||
} else
|
||||
bytes(fp, off);
|
||||
if (bytes(fp, off))
|
||||
return;
|
||||
break;
|
||||
case RLINES:
|
||||
if (S_ISREG(sbp->st_mode))
|
||||
@ -154,7 +155,8 @@ forward(fp, style, off, sbp)
|
||||
return;
|
||||
}
|
||||
} else
|
||||
lines(fp, off);
|
||||
if (lines(fp, off))
|
||||
return;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -113,6 +113,7 @@ bytes(fp, off)
|
||||
if (len = p - sp)
|
||||
WR(sp, len);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -195,4 +196,5 @@ lines(fp, off)
|
||||
for (cnt = 0; cnt < recno; ++cnt)
|
||||
WR(lines[cnt].l, lines[cnt].len);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user