On Fri, Jan 29, 2021 at 10:15 PM Hariom Verma via GitGitGadget <gitgitgadget@xxxxxxxxx> wrote: > > From: Hariom Verma <hariom18599@xxxxxxxxx> > > As we would like to use this same logic in ref-filter, it's nice to > get invalid trailer argument. This will allow us to print precise > error message, while using `format_set_trailers_options()` in > ref-filter. Thanks for continuing to work on this! > { > for (;;) { > const char *argval; > size_t arglen; > > + if(**arg == ')') { > + break; > + } A space char is missing between "if" and "(". Also no need for "{" and "}". It could just be: > + if (**arg == ')') > + break;