diff mbox series

[COMMITTED] resolv: Fix building tst-resolv-invalid-cname for earlier C standards

Message ID 874jxu544u.fsf@oldenburg.str.redhat.com
State New
Headers show
Series [COMMITTED] resolv: Fix building tst-resolv-invalid-cname for earlier C standards | expand

Commit Message

Florian Weimer Aug. 30, 2022, 12:04 p.m. UTC
This fixes this compiler error:

tst-resolv-invalid-cname.c: In function ‘test_mode_to_string’:
tst-resolv-invalid-cname.c:164:10: error: label at end of compound statement
     case test_mode_num:
          ^~~~~~~~~~~~~

Fixes commit 9caf782276ecea4bc86fc94fbb52779736f3106d
("resolv: Add new tst-resolv-invalid-cname").

---
 resolv/tst-resolv-invalid-cname.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: 1d495912a746e2a1ffb780c9a81fd234ec2464e8
diff mbox series

Patch

diff --git a/resolv/tst-resolv-invalid-cname.c b/resolv/tst-resolv-invalid-cname.c
index ae2d4419b1..63dac90e02 100644
--- a/resolv/tst-resolv-invalid-cname.c
+++ b/resolv/tst-resolv-invalid-cname.c
@@ -162,7 +162,7 @@  test_mode_to_string (enum test_mode mode)
     case gai_canon:
       return "gai_canon";
     case test_mode_num:
-      /* Report error below.  */
+      break;                    /* Report error below.  */
     }
   FAIL_EXIT1 ("invalid test_mode: %d", mode);
 }