Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1ce134aa authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Fix implicit-fallthrough warning.

Bug: 112564944
Test: make checkbuild
Change-Id: I7fcc52cd96cd781fe026e07c8029feeea8ceced0
parent 0e91bac0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ split_line(const char* p, vector<string>* out)
                    state = TEXT;
                    break;
                }
                // otherwise fall-through to TEXT case
                [[fallthrough]];
            case TEXT:
                if (state != IN_QUOTE && isspace(*p)) {
                    if (q != p) {