Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> writes: > +#define MODE(mode) ((mode) & COL_MODE) > + ... > +void print_columns(const struct string_list *list, int mode, > + struct column_options *opts) > +{ > + const char *indent = "", *nl = "\n"; > + int padding = 1, width = term_columns(); > + > + if (!list->nr) > + return; > + if (opts) { > + if (opts->indent) > + indent = opts->indent; > + if (opts->nl) > + nl = opts->nl; > + if (opts->width) > + width = opts->width; > + padding = opts->padding; > + } > + if (width <= 1 || !(mode & COL_ENABLED)) { Unless there is a compelling reason not to, make a flag word used as collection of bitfields an unsigned, i.e. not "int mode". -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html