summaryrefslogtreecommitdiff
path: root/usr.sbin/quot/quot.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2024-04-23 13:34:52 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2024-04-23 13:34:52 +0000
commit0695dce904b99103b4cc7fec55d7413358ac120d (patch)
treef6995bddf31b3aab28d430274a64849f9e1a49ec /usr.sbin/quot/quot.c
parent4f8231b24973fc14e0973e84cca023b7a139b478 (diff)
correct indentation; no functional change
ok tb@
Diffstat (limited to 'usr.sbin/quot/quot.c')
-rw-r--r--usr.sbin/quot/quot.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/quot/quot.c b/usr.sbin/quot/quot.c
index 1617ce4f5a9..16f5949f836 100644
--- a/usr.sbin/quot/quot.c
+++ b/usr.sbin/quot/quot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: quot.c,v 1.32 2018/09/18 03:09:55 millert Exp $ */
+/* $OpenBSD: quot.c,v 1.33 2024/04/23 13:34:51 jsg Exp $ */
/*
* Copyright (C) 1991, 1994 Wolfgang Solfrank.
@@ -103,8 +103,9 @@ get_inode(int fd, struct fs *super, ino_t ino)
if (pread(fd, cgp, super->fs_cgsize,
(off_t)cgtod(super, cg) << super->fs_fshift)
!= super->fs_cgsize)
- if (read(fd, cgp, super->fs_cgsize) != super->fs_cgsize)
- err(1, "read cg");
+ if (read(fd, cgp, super->fs_cgsize) !=
+ super->fs_cgsize)
+ err(1, "read cg");
if (!cg_chkmagic(cgp))
errx(1, "cg has bad magic");
}