Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
1b7f954a
Commit
1b7f954a
authored
Oct 18, 2004
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Return out of the default case, assert() is removed with -DNDEBUG.
parent
097e2812
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
libraries.c
programs/winecfg/libraries.c
+6
-2
No files found.
programs/winecfg/libraries.c
View file @
1b7f954a
...
...
@@ -273,7 +273,9 @@ static void set_dllmode(HWND dialog, DWORD id)
CONVERT
(
NATIVE_BUILTIN
);
CONVERT
(
DISABLE
);
default:
assert
(
FALSE
);
/* should not be reached */
default:
assert
(
FALSE
);
/* should not be reached */
return
;
}
#undef CONVERT
...
...
@@ -290,7 +292,9 @@ static void set_dllmode(HWND dialog, DWORD id)
case
BUILTIN_NATIVE
:
str
=
"builtin, native"
;
break
;
case
NATIVE_BUILTIN
:
str
=
"native, builtin"
;
break
;
case
DISABLE
:
str
=
""
;
break
;
default:
assert
(
FALSE
);
/* unreachable */
default:
assert
(
FALSE
);
/* unreachable */
return
;
}
WINE_TRACE
(
"Setting %s to %s
\n
"
,
dll
->
name
,
str
);
...
...
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