On Mon, Feb 10, 2020 at 03:07:49PM +0100, Jakub Jelinek wrote: > + || strncmp (name, ".lbss.", sizeof (".lbss.") - 1) == 0
You can just use strlen (".lbss.") which is nicer to read and compiles to the same thing? Segher
On Mon, Feb 10, 2020 at 03:07:49PM +0100, Jakub Jelinek wrote: > + || strncmp (name, ".lbss.", sizeof (".lbss.") - 1) == 0
You can just use strlen (".lbss.") which is nicer to read and compiles to the same thing? Segher