On Tue, Feb 08, 2011 at 02:48:18PM -0800, Ethan Jackson wrote: > > +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.
Thanks, fixed. _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev_openvswitch.org