1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-12 09:58:36 +00:00

Provide complete coverage in switch statement to quiet -Wall.

This commit is contained in:
David E. O'Brien 1999-12-18 09:56:15 +00:00
parent 4e820cbe37
commit 7849745722
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54778

View File

@ -3090,6 +3090,8 @@ process_command (argc, argv)
add_prefix (&exec_prefixes, "/usr/libexec/elf/", "BINUTILS",
0, 0, NULL_PTR);
break;
case OBJFMT_UNKNOWN:
fatal ("object format unknown");
}
add_prefix (&exec_prefixes, "/usr/libexec/", "GCC",
0, 0, warn_std_ptr);
@ -3184,6 +3186,8 @@ process_command (argc, argv)
case OBJFMT_ELF:
putenv("OBJFORMAT=elf");
break;
case OBJFMT_UNKNOWN:
fatal ("object format unknown");
}
#endif