On Thu, Jul 13, 2017 at 5:10 PM, Ryan Libby <rli...@freebsd.org> wrote:
> Author: rlibby
> Date: Fri Jul 14 00:10:51 2017
> New Revision: 320977
> URL: https://svnweb.freebsd.org/changeset/base/320977

...

> +const char * const ixl_fc_string[6] = {
> +       "None",
> +       "Rx",
> +       "Tx",
> +       "Full",
> +       "Priority",
> +       "Default"
> +};

This should use flexible arrays, e.g.,

const char * const ixl_fc_string[] = {
    "None",
    ...
};

-Ngie
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to