crash
crash copied to clipboard
configure.c:299: fallthrough ?
clang compiler says:
configure.c:299:43: warning: this statement may fall through [-Wimplicit-fallthrough=]
Source code is
case 'd':
target_data.flags |= DAEMON;
case 'b':
build_configure(sp);
break;
That is an intended fallthrough.
I suggest the source code gets marked up to indicate this.
/* fallthrough */
should do it.