From d5ad5ca91ca6aa1a3eb2a3849bb0dbcb6f67f5d0 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sat, 5 Nov 2011 20:53:46 +0000 Subject: [PATCH] kernel32: Remove extraneous braces from switch statement. --- dlls/kernel32/volume.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/dlls/kernel32/volume.c b/dlls/kernel32/volume.c index e2b03a2c545..5d7a07d1aeb 100644 --- a/dlls/kernel32/volume.c +++ b/dlls/kernel32/volume.c @@ -585,12 +585,10 @@ static DWORD VOLUME_GetSuperblockSerial( const UNICODE_STRING *device, HANDLE ha case FS_FAT32: return GETLONG( superblock, 0x33 ); case FS_UDF: - { - if (!VOLUME_ReadCDBlock(handle, block, 257*BLOCK_SIZE)) - break; - superblock = block; - /* fallthrough */ - } + if (!VOLUME_ReadCDBlock(handle, block, 257*BLOCK_SIZE)) + break; + superblock = block; + /* fallthrough */ case FS_ISO9660: { BYTE sum[4];