From: Andrew Morton fs/ncpfs/ioctl.c: In function 'ncp_ioctl_need_write': fs/ncpfs/ioctl.c:852: error: label at end of compound statement Cc: Dave Hansen Cc: Christoph Hellwig Signed-off-by: Andrew Morton --- fs/ncpfs/ioctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/ncpfs/ioctl.c~r-o-bind-mounts-elevate-write-count-during-entire-ncp_ioctl-fix fs/ncpfs/ioctl.c --- a/fs/ncpfs/ioctl.c~r-o-bind-mounts-elevate-write-count-during-entire-ncp_ioctl-fix +++ a/fs/ncpfs/ioctl.c @@ -847,8 +847,8 @@ static int ncp_ioctl_need_write(unsigned case NCP_IOC_GETROOT: case NCP_IOC_SETROOT: return 0; - default: - /* unkown IOCTL command, assume write */ + default: /* unkown IOCTL command, assume write */ + ; } return 1; } _