diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-02-01 19:08:41 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-02-01 19:08:41 +0000 |
commit | 8e24dfb1274ca9a46c89b33ae64ba22a5f5610ce (patch) | |
tree | 40e2b9f19b7db0f4579c10323ca12a390e9d2e0d /regress | |
parent | dae5a8d2fe650b63b8a5930e44ee701b2c7a1261 (diff) |
double semicolon; from Daniel Matic in PR 4929
Diffstat (limited to 'regress')
-rw-r--r-- | regress/sys/uvm/mmap_4g/mmap_4g.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/sys/uvm/mmap_4g/mmap_4g.c b/regress/sys/uvm/mmap_4g/mmap_4g.c index d6dbb17ee96..3499b39d7f9 100644 --- a/regress/sys/uvm/mmap_4g/mmap_4g.c +++ b/regress/sys/uvm/mmap_4g/mmap_4g.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mmap_4g.c,v 1.1 2005/05/03 18:26:54 otto Exp $ */ +/* $OpenBSD: mmap_4g.c,v 1.2 2006/02/01 19:08:40 otto Exp $ */ /* * Public domain. 2005, Otto Moerbeek <otto@drijf.net> @@ -29,7 +29,7 @@ main() if (fd == -1) err(1, "open"); - sz = sizeof(buf);; + sz = sizeof(buf); offset = 4LL * 1024LL * 1024LL * 1024LL - sz/2; if (lseek(fd, offset, SEEK_SET) != offset) |