# HG changeset patch # User Francois Perrad # Date 1451583394 -3600 # Node ID 968be6f7cff6ade72143a1ea3ea01291ba8803f5 # Parent 1f9858bfe03e3a917aa3947f0fe01843d5051484 add comment FALLTHROUGH which recognize by many lint tools diff -r 1f9858bfe03e -r 968be6f7cff6 atomicio.c --- a/atomicio.c Thu Dec 31 18:02:21 2015 +0100 +++ b/atomicio.c Thu Dec 31 18:36:34 2015 +0100 @@ -53,6 +53,7 @@ if (errno == EINTR || errno == EAGAIN) #endif continue; + /* FALLTHROUGH */ case 0: return (res); default: diff -r 1f9858bfe03e -r 968be6f7cff6 cli-runopts.c --- a/cli-runopts.c Thu Dec 31 18:02:21 2015 +0100 +++ b/cli-runopts.c Thu Dec 31 18:36:34 2015 +0100 @@ -315,6 +315,7 @@ break; case 'b': next = &dummy; + /* FALLTHROUGH */ default: fprintf(stderr, "WARNING: Ignoring unknown option -%c\n", c);