# HG changeset patch # User Andrew Innes # Date 925639143 0 # Node ID 239ee0e7b828f339d54f0c551db36ede64969c66 # Parent 5ba81a9aa8e812e56ea353331953975c962375f4 (copy_executable_and_move_sections): Ifdef out a couple of unused switch cases that aren't defined on all platforms. diff -r 5ba81a9aa8e8 -r 239ee0e7b828 nt/preprep.c --- a/nt/preprep.c Sun May 02 09:57:46 1999 +0000 +++ b/nt/preprep.c Sun May 02 09:59:03 1999 +0000 @@ -741,9 +741,12 @@ dropped from NT4 anyway. */ abort (); break; +#ifndef IMAGE_REL_BASED_SECTION case IMAGE_REL_BASED_SECTION: case IMAGE_REL_BASED_REL32: /* Docs don't say what these values mean. */ +#endif + default: abort (); } }