The "ignore_entry" label used to skip non ".ech" directory entries in
load_echkeys() was placed right before the closing brace of the "for"
loop, with no statement attached to it. A label with no following
statement is only valid since C23, so strict compilers reject it:
src/ech.c:96:2: error: label at end of compound statement is a C23
extension [-Werror,-Wc23-extensions]