fatalx on unknown enum members in a couple of places, from Ben Boeckel.
authornicm <nicm@openbsd.org>
Tue, 2 Nov 2021 10:57:04 +0000 (10:57 +0000)
committernicm <nicm@openbsd.org>
Tue, 2 Nov 2021 10:57:04 +0000 (10:57 +0000)
usr.bin/tmux/arguments.c

index 03a5b82..ce33138 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: arguments.c,v 1.51 2021/09/09 21:55:03 nicm Exp $ */
+/* $OpenBSD: arguments.c,v 1.52 2021/11/02 10:57:04 nicm Exp $ */
 
 /*
  * Copyright (c) 2010 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -108,6 +108,7 @@ args_value_as_string(struct args_value *value)
        case ARGS_STRING:
                return (value->string);
        }
+       fatalx("unexpected argument type");
 }
 
 /* Create an empty arguments set. */
@@ -753,6 +754,7 @@ args_make_commands(struct args_command_state *state, int argc, char **argv,
        case CMD_PARSE_SUCCESS:
                return (pr->cmdlist);
        }
+       fatalx("invalid parse return state");
 }
 
 /* Free commands state. */