Adjust wording of two fall-through comments

Message ID alpine.DEB.2.21.1902131829450.23922@digraph.polyomino.org.uk
State Committed
Headers

Commit Message

Joseph Myers Feb. 13, 2019, 6:30 p.m. UTC
  In two places in glibc, -Wextra produces implicit-fallthrough warnings
where there are comments about the fall-through but their wording
doesn't match one of the forms expected by the default
implicit-fallthrough level.  This patch adjusts those two places to
have a comment in a form that is accepted, so avoiding the warning
(this seems preferable to only being able to use a looser level of the
warning that allows any comment at all as evidence of deliberate
fall-through).

Tested for x86_64.

2019-02-13  Joseph Myers  <joseph@codesourcery.com>

	* iconvdata/cns11643.h (ucs4_to_cns11643): Adjust fall-through
	comment wording.
	* nis/nis_call.c (__do_niscall3): Likewise.
  

Comments

Florian Weimer Feb. 13, 2019, 6:36 p.m. UTC | #1
* Joseph Myers:

> 	* iconvdata/cns11643.h (ucs4_to_cns11643): Adjust fall-through
> 	comment wording.
> 	* nis/nis_call.c (__do_niscall3): Likewise.

Looks okay to me.

Thanks,
Florian
  
Jonathan Nieder Feb. 13, 2019, 6:38 p.m. UTC | #2
Joseph Myers wrote:

> In two places in glibc, -Wextra produces implicit-fallthrough warnings
> where there are comments about the fall-through but their wording
> doesn't match one of the forms expected by the default
> implicit-fallthrough level.  This patch adjusts those two places to
> have a comment in a form that is accepted, so avoiding the warning
> (this seems preferable to only being able to use a looser level of the
> warning that allows any comment at all as evidence of deliberate
> fall-through).
>
> Tested for x86_64.
>
> 2019-02-13  Joseph Myers  <joseph@codesourcery.com>
>
> 	* iconvdata/cns11643.h (ucs4_to_cns11643): Adjust fall-through
> 	comment wording.
> 	* nis/nis_call.c (__do_niscall3): Likewise.

Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>

Thanks.
  

Patch

diff --git a/iconvdata/cns11643.h b/iconvdata/cns11643.h
index 892e3f7b04..c7b5ccc94d 100644
--- a/iconvdata/cns11643.h
+++ b/iconvdata/cns11643.h
@@ -220,7 +220,8 @@  ucs4_to_cns11643 (uint32_t wch, unsigned char *s, size_t avail)
       cp = __cns11643l1_from_ucs4_tab12[ch - 0x4e00];
       if (cp[0] != '\0')
 	break;
-      /* FALLTHROUGH.  Let's try the other planes.  */
+      /* Let's try the other planes.  */
+      /* Fall through.  */
     case 0x3400 ... 0x4dff:
     case 0x9f9d ... 0x9fa5:
       /* Let's try the other planes.  */
diff --git a/nis/nis_call.c b/nis/nis_call.c
index 965b66991e..58e3a4dc54 100644
--- a/nis/nis_call.c
+++ b/nis/nis_call.c
@@ -325,6 +325,7 @@  __do_niscall3 (dir_binding *dbp, u_long prog, xdrproc_t xargs, caddr_t req,
 		}
 	      /* Yes, the missing break is correct. If we doesn't have to
 		 start a callback, look if we have to search another server */
+	      /* Fall through.  */
 	    case NIS_LOOKUP:
 	    case NIS_ADD:
 	    case NIS_MODIFY: