diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-09-20 02:00:47 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-09-20 02:00:47 +0000 |
commit | ed5be3cd5c0c9d7c05acb4a007ef174dfe1d20a2 (patch) | |
tree | 1f2c3605ce9ce75dae573fe64caa874965255235 /sys/ufs | |
parent | 9d855f50e028f54fce34e1db0d866a6255c5e78f (diff) |
remove unneeded semicolons; checked by millert@
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_lookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_lookup.c b/sys/ufs/ext2fs/ext2fs_lookup.c index 435f8c7c662..5c5097d06d1 100644 --- a/sys/ufs/ext2fs/ext2fs_lookup.c +++ b/sys/ufs/ext2fs/ext2fs_lookup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_lookup.c,v 1.47 2024/09/12 09:04:51 claudio Exp $ */ +/* $OpenBSD: ext2fs_lookup.c,v 1.48 2024/09/20 02:00:46 jsg Exp $ */ /* $NetBSD: ext2fs_lookup.c,v 1.16 2000/08/03 20:29:26 thorpej Exp $ */ /* @@ -776,7 +776,7 @@ ext2fs_direnter(struct inode *ip, struct vnode *dvp, newdir.e2d_type = inot2ext2dt(IFTODT(ip->i_e2fs_mode)); } else { newdir.e2d_type = 0; - }; + } memcpy(newdir.e2d_name, cnp->cn_nameptr, (unsigned)cnp->cn_namelen + 1); newentrysize = EXT2FS_DIRSIZ(cnp->cn_namelen); if (dp->i_count == 0) { |