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
a38d47f2
Commit
a38d47f2
authored
Sep 05, 2008
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Remove unreachable break after return (Smatch).
parent
201cbd3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
dde.c
dlls/user32/tests/dde.c
+0
-8
No files found.
dlls/user32/tests/dde.c
View file @
a38d47f2
...
...
@@ -2143,7 +2143,6 @@ static HDDEDATA CALLBACK server_end_to_end_callback(UINT uType, UINT uFmt, HCONV
ok
(
msg_index
==
1
||
msg_index
==
7
||
msg_index
==
13
||
msg_index
==
19
,
"Expected 1, 7, 13 or 19, got %d
\n
"
,
msg_index
);
return
(
HDDEDATA
)
TRUE
;
break
;
}
case
XTYP_CONNECT
:
...
...
@@ -2167,7 +2166,6 @@ static HDDEDATA CALLBACK server_end_to_end_callback(UINT uType, UINT uFmt, HCONV
ok
(
size
==
14
,
"Expected 14, got %d, msg_index=%d
\n
"
,
size
,
msg_index
);
return
(
HDDEDATA
)
TRUE
;
break
;
}
case
XTYP_CONNECT_CONFIRM
:
{
...
...
@@ -2262,10 +2260,7 @@ static HDDEDATA CALLBACK server_end_to_end_callback(UINT uType, UINT uFmt, HCONV
return
(
HDDEDATA
)
DDE_FACK
;
}
case
XTYP_DISCONNECT
:
{
return
(
HDDEDATA
)
TRUE
;
break
;
}
default:
ok
(
FALSE
,
"Unhandled msg: %08x, msg_index=%d
\n
"
,
uType
,
msg_index
);
...
...
@@ -2281,10 +2276,7 @@ static HDDEDATA CALLBACK client_end_to_end_callback(UINT uType, UINT uFmt, HCONV
switch
(
uType
)
{
case
XTYP_DISCONNECT
:
{
return
(
HDDEDATA
)
TRUE
;
break
;
}
default:
ok
(
FALSE
,
"Unhandled msg: %08x
\n
"
,
uType
);
...
...
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