static const ps_out_t* find_out_spec(const char *name)
{
unsigned i;
-#if ENABLE_DESKTOP
char buf[ARRAY_SIZE(out_spec)*7 + 1];
char *p = buf;
-#endif
for (i = 0; i < ARRAY_SIZE(out_spec); i++) {
if (strncmp(name, out_spec[i].name6, 6) == 0)
return &out_spec[i];
-#if ENABLE_DESKTOP
p += sprintf(p, "%.6s,", out_spec[i].name6);
-#endif
}
-#if ENABLE_DESKTOP
p[-1] = '\0';
bb_error_msg_and_die("bad -o argument '%s', supported arguments: %s", name, buf);
-#else
- bb_error_msg_and_die("bad -o argument '%s'");
-#endif
}
static void parse_o(char* opt)