On Mon, May 16, 2016 at 4:41 PM, Junio C Hamano <gits...@pobox.com> wrote:
> On Mon, May 16, 2016 at 4:19 PM, Stefan Beller <sbel...@google.com> wrote:
>>>         if (*p) {
>>>                 p += 2;
>>> -               for (eol = p; *eol && *eol != '\n'; eol++)
>>> -                       ; /* do nothing */
>>> +               eol = strchrnul(p, '\n');
>>
>> Nit:
>> You could include the +2 into the arg of  strchrnul,
>> such that you can drop the braces.
>
> You're right. With or without braces,
>
>   eol = strchrnul(p + 2, '\n');
>
> would be easier to understand (I do not know offhand if the value of p
> matters after this part, as I am responding from GMail Web UI without
> access to the wider context in the source, though).

Heh, good point, I did not think it through apparently. `p` matters.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to