mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
kernel32: Remove extraneous braces from switch statement.
This commit is contained in:
parent
f03c8a19a2
commit
d5ad5ca91c
1 changed files with 4 additions and 6 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue