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
0885d345
Commit
0885d345
authored
Dec 23, 2009
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Dec 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Use #elif defined(...) instead of plain #elif when detecting…
winedbg: Use #elif defined(...) instead of plain #elif when detecting architectures in dbg_start_interactive().
parent
72559440
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
winedbg.c
programs/winedbg/winedbg.c
+3
-3
No files found.
programs/winedbg/winedbg.c
View file @
0885d345
...
...
@@ -610,11 +610,11 @@ void dbg_start_interactive(HANDLE hFile)
struct
backend_cpu
*
be_cpu
;
#ifdef __i386__
extern
struct
backend_cpu
be_i386
;
#elif
__powerpc__
#elif
defined(__powerpc__)
extern
struct
backend_cpu
be_ppc
;
#elif
__ALPHA__
#elif
defined(__ALPHA__)
extern
struct
backend_cpu
be_alpha
;
#elif
__x86_64__
#elif
defined(__x86_64__)
extern
struct
backend_cpu
be_x86_64
;
#else
# error CPU unknown
...
...
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