X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/c6f2d14d9c38345075629af3487c2de491584ca1..29db9a64a:/sbr/fdcompare.c?ds=sidebyside diff --git a/sbr/fdcompare.c b/sbr/fdcompare.c index 7f06ec7c..7df9a89a 100644 --- a/sbr/fdcompare.c +++ b/sbr/fdcompare.c @@ -1,6 +1,4 @@ - -/* - * fdcompare.c -- are two files identical? +/* fdcompare.c -- are two files identical? * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for @@ -34,7 +32,7 @@ fdcompare (int fd1, int fd2) resp = 0; leave: ; - lseek (fd1, (off_t) 0, SEEK_SET); - lseek (fd2, (off_t) 0, SEEK_SET); + lseek(fd1, 0, SEEK_SET); + lseek(fd2, 0, SEEK_SET); return resp; }