From: Andrew Innes Date: Sun, 2 May 1999 09:59:03 +0000 (+0000) Subject: (copy_executable_and_move_sections): Ifdef out a X-Git-Tag: emacs-20.4~283 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3102421f63b7ce05acf079625d2e8ff569cb6104;p=emacs.git (copy_executable_and_move_sections): Ifdef out a couple of unused switch cases that aren't defined on all platforms. --- diff --git a/nt/preprep.c b/nt/preprep.c index c9af636707b..a33d3f049d3 100644 --- a/nt/preprep.c +++ b/nt/preprep.c @@ -741,9 +741,12 @@ copy_executable_and_move_sections (file_data *p_infile, 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 (); } }