Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d5ad5ca9
Commit
d5ad5ca9
authored
Nov 05, 2011
by
Andrew Talbot
Committed by
Alexandre Julliard
Nov 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Remove extraneous braces from switch statement.
parent
f03c8a19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
volume.c
dlls/kernel32/volume.c
+4
-6
No files found.
dlls/kernel32/volume.c
View file @
d5ad5ca9
...
@@ -585,12 +585,10 @@ static DWORD VOLUME_GetSuperblockSerial( const UNICODE_STRING *device, HANDLE ha
...
@@ -585,12 +585,10 @@ static DWORD VOLUME_GetSuperblockSerial( const UNICODE_STRING *device, HANDLE ha
case
FS_FAT32
:
case
FS_FAT32
:
return
GETLONG
(
superblock
,
0x33
);
return
GETLONG
(
superblock
,
0x33
);
case
FS_UDF
:
case
FS_UDF
:
{
if
(
!
VOLUME_ReadCDBlock
(
handle
,
block
,
257
*
BLOCK_SIZE
))
if
(
!
VOLUME_ReadCDBlock
(
handle
,
block
,
257
*
BLOCK_SIZE
))
break
;
break
;
superblock
=
block
;
superblock
=
block
;
/* fallthrough */
/* fallthrough */
}
case
FS_ISO9660
:
case
FS_ISO9660
:
{
{
BYTE
sum
[
4
];
BYTE
sum
[
4
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment