diff options
Diffstat (limited to 'usr.bin/tail/misc.c')
-rw-r--r-- | usr.bin/tail/misc.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/tail/misc.c b/usr.bin/tail/misc.c index 6d0ecdb..c2f1883 100644 --- a/usr.bin/tail/misc.c +++ b/usr.bin/tail/misc.c @@ -73,9 +73,7 @@ oerr() * absolute file offset `startoff'. May move map window. */ int -mapprint(mip, startoff, len) - struct mapinfo *mip; - off_t startoff, len; +mapprint(struct mapinfo *mip, off_t startoff, off_t len) { int n; @@ -101,9 +99,7 @@ mapprint(mip, startoff, len) * aligned. */ int -maparound(mip, offset) - struct mapinfo *mip; - off_t offset; +maparound(struct mapinfo *mip, off_t offset) { if (mip->start != NULL && munmap(mip->start, mip->maplen) != 0) |