> +static struct table *
> +list_make_table(const struct ovsdb_idl_column **columns, size_t n_columns)
> +{
> +    struct table *out;
> +    size_t i;
> +
> +    out = xmalloc(sizeof *out);
> +    table_init(out);
> +
> +    for (i = 0; i < n_columns; i++) {
> +        const struct ovsdb_idl_column *column = columns[i];
> +        const char *column_name = column ? column->name : "_uuid";
> +
> +        table_add_column(out, "%s", column_name);
> +    }
> +
> +    return out;
> +}
> +
> +
There's an extra new line here.

Looks Good.

_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev_openvswitch.org

Reply via email to