aboutsummaryrefslogtreecommitdiff
path: root/bin/dd
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-04-30 17:51:29 +0000
committerBruce Evans <bde@FreeBSD.org>1997-04-30 17:51:29 +0000
commit3e75bb9be1f2ae6c8edc60ce43a7c419b193e330 (patch)
tree90d9f3322ae87d34deb2064e08eb81c5c82ce03a /bin/dd
parent409ac84cb2db10ac9c93154c2f53c4e86144b446 (diff)
Notes
Diffstat (limited to 'bin/dd')
-rw-r--r--bin/dd/position.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/dd/position.c b/bin/dd/position.c
index 9c5616d619b2..9e2ed77c1d18 100644
--- a/bin/dd/position.c
+++ b/bin/dd/position.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: position.c,v 1.5 1997/02/22 14:02:48 peter Exp $
*/
#ifndef lint
@@ -67,7 +67,7 @@ pos_in()
/* If not a character, pipe or tape device, try to seek on it. */
if (!(in.flags & (ISCHR|ISPIPE|ISTAPE))) {
- if (lseek(in.fd, (off_t)(in.offset * in.dbsz), SEEK_CUR) == -1)
+ if (lseek(in.fd, (off_t)in.offset * in.dbsz, SEEK_CUR) == -1)
err(1, "%s", in.name);
return;
}