Made weston-nested --help work

This commit is contained in:
Bill Spitzak 2014-08-08 12:59:52 -07:00 committed by Pekka Paalanen
parent 4fb8491e1b
commit 6df71aae03

View File

@ -1115,8 +1115,11 @@ main(int argc, char *argv[])
struct display *display;
struct nested *nested;
parse_options(nested_options,
ARRAY_LENGTH(nested_options), &argc, argv);
if (parse_options(nested_options,
ARRAY_LENGTH(nested_options), &argc, argv) > 1) {
printf("Usage: %s [OPTIONS]\n --blit or -b\n", argv[0]);
exit(1);
}
display = display_create(&argc, argv);
if (display == NULL) {