Skip to content
Snippets Groups Projects
Commit d5ad5ca9 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard
Browse files

kernel32: Remove extraneous braces from switch statement.

parent f03c8a19
No related branches found
No related tags found
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment