Silence gcc7 warnings by adjusting FALLS THROUGH comment.

This commit is contained in:
Olaf Seibert
2020-03-03 22:11:02 +01:00
parent 5c9fc1ae16
commit 592b7facf1
3 changed files with 4 additions and 2 deletions

View File

@@ -226,7 +226,7 @@ void implicit_gbl(
case EX_AND:
case EX_OR:
implicit_gbl(value->data.child.right);
/* falls into... */
/* FALLS THROUGH */
case EX_COM:
case EX_NEG:
implicit_gbl(value->data.child.left);