From e7ec8713ec12a633fcdfc5524c9ee050389b6f9d Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 28 May 2018 21:26:50 -0600 Subject: Fix fall-through comment in windows-nat.c Now that the mingw builder in the buildbot is working again, it pointed out a build failure due to a missing fall-through comment in windows-nat.c. This patch fixes the problem. Tested by first triggering the failure with a local mingw build, then by rebuilding successfully with the patch. I'm checking this in as obvious. gdb/ChangeLog 2018-05-29 Tom Tromey * windows-nat.c (handle_exception): Update fall-through comment. --- gdb/windows-nat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/windows-nat.c') diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 9655694..608356e 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -1253,7 +1253,8 @@ handle_exception (struct target_waitstatus *ourstatus) result = HANDLE_EXCEPTION_IGNORED; break; } - /* treat improperly formed exception as unknown, fallthrough */ + /* treat improperly formed exception as unknown */ + /* FALLTHROUGH */ default: /* Treat unhandled first chance exceptions specially. */ if (current_event.u.Exception.dwFirstChance) -- cgit v1.1