On Mon, May 16, 2016 at 4:19 PM, Stefan Beller <sbeller@xxxxxxxxxx> 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). -- 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