Commit f2d18c1c authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

winedbg: Use #elif defined(...) instead of plain #elif in main().

parent e8d387fd
...@@ -628,11 +628,11 @@ int main(int argc, char** argv) ...@@ -628,11 +628,11 @@ int main(int argc, char** argv)
#ifdef __i386__ #ifdef __i386__
be_cpu = &be_i386; be_cpu = &be_i386;
#elif __powerpc__ #elif defined(__powerpc__)
be_cpu = &be_ppc; be_cpu = &be_ppc;
#elif __ALPHA__ #elif defined(__ALPHA__)
be_cpu = &be_alpha; be_cpu = &be_alpha;
#elif __x86_64__ #elif defined(__x86_64__)
be_cpu = &be_x86_64; be_cpu = &be_x86_64;
#else #else
# error CPU unknown # error CPU unknown
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment