diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-16 19:46:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-16 19:46:15 +0000 |
commit | 75714c460fcad691f65aac83a88aa5e47478871f (patch) | |
tree | 6beab9d9b9eabd5f13fd7730055d356c016bc9c0 | |
parent | eb99aeffb34327c89f3acd97208a628220a4cafd (diff) |
indent
-rw-r--r-- | lib/libc/sys/statvfs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/sys/statvfs.c b/lib/libc/sys/statvfs.c index 71bbccd2146..34256b32a80 100644 --- a/lib/libc/sys/statvfs.c +++ b/lib/libc/sys/statvfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: statvfs.c,v 1.1 2008/03/16 19:44:34 otto Exp $ */ +/* $OpenBSD: statvfs.c,v 1.2 2008/03/16 19:46:14 deraadt Exp $ */ /* * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> @@ -55,7 +55,8 @@ fstatvfs(int fd, struct statvfs *p) return (ret); } -int statvfs(const char *path, struct statvfs *p) +int +statvfs(const char *path, struct statvfs *p) { struct statfs sb; int ret; |