1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

s4:ntvfs: Add missing break in switch statement

error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough]

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Andreas Schneider 2021-02-01 18:18:39 +01:00 committed by Jeremy Allison
parent a531f83494
commit a878200934

View File

@ -102,6 +102,7 @@ NTSTATUS pvfs_fsinfo(struct ntvfs_module_context *ntvfs,
if (sys_fsusage(pvfs->base_directory, &blocks_free, &blocks_total) == -1) {
return pvfs_map_errno(pvfs, errno);
}
break;
default:
break;
}