diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2021-10-24 16:02:45 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2021-10-24 16:02:45 +0000 |
commit | 0dd9ae661fa85df8ed28132ccebb89f217a8a0a2 (patch) | |
tree | 19e3c005c91908af80d8a3fbb05f7e6022810ee7 /sys/tmpfs/tmpfs_vnops.c | |
parent | c8fbb97e096527b9a24038c3b3db53f7fb551407 (diff) |
tiny little whitespace fixes
Diffstat (limited to 'sys/tmpfs/tmpfs_vnops.c')
-rw-r--r-- | sys/tmpfs/tmpfs_vnops.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/tmpfs/tmpfs_vnops.c b/sys/tmpfs/tmpfs_vnops.c index fb862771dd4..da574287cd4 100644 --- a/sys/tmpfs/tmpfs_vnops.c +++ b/sys/tmpfs/tmpfs_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmpfs_vnops.c,v 1.49 2021/10/24 09:59:52 patrick Exp $ */ +/* $OpenBSD: tmpfs_vnops.c,v 1.50 2021/10/24 16:02:44 patrick Exp $ */ /* $NetBSD: tmpfs_vnops.c,v 1.100 2012/11/05 17:27:39 dholland Exp $ */ /* @@ -888,7 +888,7 @@ tmpfs_rmdir(void *v) KASSERT(node->tn_spec.tn_dir.tn_parent == dnode); /* - * Directories with more than two entries ('.' and '..') cannot be + * Directories with more than two entries ('.' and '..') cannot be * removed. */ if (node->tn_size > 0) { @@ -2656,7 +2656,7 @@ filt_tmpfsread(struct knote *kn, long hint) tmpfs_node_t *node = VP_TO_TMPFS_NODE(vp); /* - * filesystem is gone, so set the EOF flag and schedule + * filesystem is gone, so set the EOF flag and schedule * the knote for deletion. */ if (hint == NOTE_REVOKE) { @@ -2680,7 +2680,7 @@ int filt_tmpfswrite(struct knote *kn, long hint) { /* - * filesystem is gone, so set the EOF flag and schedule + * filesystem is gone, so set the EOF flag and schedule * the knote for deletion. */ if (hint == NOTE_REVOKE) { |