pki: Properly use ?: when defining option arrays

This commit is contained in:
Tobias Brunner
2014-01-23 10:10:53 +01:00
parent 2d7852d29a
commit b0e14fcba6
+2 -2
View File
@@ -55,12 +55,12 @@ static options_t *options;
/**
* Global options used by all subcommands
*/
static struct option command_opts[MAX_COMMANDS > MAX_OPTIONS ?: MAX_OPTIONS];
static struct option command_opts[MAX_COMMANDS > MAX_OPTIONS ? MAX_COMMANDS : MAX_OPTIONS];
/**
* Global optstring used by all subcommands
*/
static char command_optstring[(MAX_COMMANDS > MAX_OPTIONS ?: MAX_OPTIONS) * 3];
static char command_optstring[(MAX_COMMANDS > MAX_OPTIONS ? MAX_COMMANDS : MAX_OPTIONS) * 3];
/**
* Build command_opts/command_optstr for the active command