From 934cc613fde11548e5b166cb51e3afb9c9943734 Mon Sep 17 00:00:00 2001 From: Yi Jin Date: Thu, 15 Mar 2018 14:14:26 -0700 Subject: [PATCH] Fix bug to break switch cases. Bug: 75001195 Test: N/A Change-Id: I99274cbf34d191c25ad9ced08f999c59f922cb25 --- tools/incident_section_gen/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/incident_section_gen/main.cpp b/tools/incident_section_gen/main.cpp index 8219150d30291..7e922e6528de3 100644 --- a/tools/incident_section_gen/main.cpp +++ b/tools/incident_section_gen/main.cpp @@ -427,6 +427,7 @@ static bool generateSectionListCpp(Descriptor const* descriptor) { printf(" new GZipSection(%d,", field->number()); splitAndPrint(s.args()); printf(" NULL),\n"); + break; case SECTION_TOMBSTONE: printf(" new TombstoneSection(%d, \"%s\"),\n", field->number(), s.args().c_str()); break;