diff options
author | rilysh <nightquick@proton.me> | 2024-02-03 00:38:13 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2024-02-03 01:35:02 +0000 |
commit | b139f2ee9939b5a93afb904942f67123c3985dc7 (patch) | |
tree | 56c1d1be35ce1782f3ea052d5a45c37aa408703d | |
parent | e9b261f297cac146f0c9f895c16debe1c4cf8978 (diff) | |
download | src-b139f2ee9939b5a93afb904942f67123c3985dc7.tar.gz src-b139f2ee9939b5a93afb904942f67123c3985dc7.zip |
lib/libbe/be.c: remove an extra semicolon
Signed-off-by: rilysh <nightquick@proton.me>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/959
-rw-r--r-- | lib/libbe/be.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libbe/be.c b/lib/libbe/be.c index e61cfc9d68ae..62563a33d975 100644 --- a/lib/libbe/be.c +++ b/lib/libbe/be.c @@ -1167,7 +1167,7 @@ be_create_child_noent(libbe_handle_t *lbh, const char *active, static int be_create_child_cloned(libbe_handle_t *lbh, const char *active) { - char buf[BE_MAXPATHLEN], tmp[BE_MAXPATHLEN];; + char buf[BE_MAXPATHLEN], tmp[BE_MAXPATHLEN]; zfs_handle_t *zfs; int err; |