handle clang11 -Wc99-designator

This commit is contained in:
nick black 2020-05-19 23:01:48 -04:00
parent 3119a87801
commit 2edb7fe690
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -52,11 +52,11 @@ constexpr int OPT_RIGHTOFF = 103;
void parse_args(int argc, char** argv, struct notcurses_options* opts, void parse_args(int argc, char** argv, struct notcurses_options* opts,
struct ncreel_options* ropts){ struct ncreel_options* ropts){
const struct option longopts[] = { const struct option longopts[] = {
{ .name = "ot", .has_arg = 1, .flag = nullptr, OPT_TOPOFF, }, { .name = "ot", .has_arg = 1, .flag = nullptr, .val = OPT_TOPOFF, },
{ .name = "ob", .has_arg = 1, .flag = nullptr, OPT_BOTTOMOFF, }, { .name = "ob", .has_arg = 1, .flag = nullptr, .val = OPT_BOTTOMOFF, },
{ .name = "ol", .has_arg = 1, .flag = nullptr, OPT_LEFTOFF, }, { .name = "ol", .has_arg = 1, .flag = nullptr, .val = OPT_LEFTOFF, },
{ .name = "or", .has_arg = 1, .flag = nullptr, OPT_RIGHTOFF, }, { .name = "or", .has_arg = 1, .flag = nullptr, .val = OPT_RIGHTOFF, },
{ .name = nullptr, .has_arg = 0, .flag = nullptr, 0, }, { .name = nullptr, .has_arg = 0, .flag = nullptr, .val = 0, },
}; };
int c; int c;
while((c = getopt_long(argc, argv, "b:t:h", longopts, nullptr)) != -1){ while((c = getopt_long(argc, argv, "b:t:h", longopts, nullptr)) != -1){