From c9ad6ca88177c950bc20d043931cd1eae6d707b1 Mon Sep 17 00:00:00 2001 From: Maik Merten Date: Sat, 5 Mar 2022 17:36:21 +0100 Subject: icetime: indent with tabs --- icetime/icetime.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/icetime/icetime.cc b/icetime/icetime.cc index e872cbd..065705a 100644 --- a/icetime/icetime.cc +++ b/icetime/icetime.cc @@ -221,19 +221,19 @@ void read_pcf(const char *filename) if (tok == nullptr || strcmp(tok, "set_io")) continue; - bool skip_next = false; + bool skip_next = false; std::vector args; while ((tok = strtok(nullptr, " \t\r\n")) != nullptr) { - if(skip_next) { - skip_next = false; - continue; - } + if(skip_next) { + skip_next = false; + continue; + } if (!strcmp(tok, "--warn-no-port")) continue; - if (!strcmp(tok, "-pullup") || !strcmp(tok, "-pullup_resistor")) { - skip_next = true; // skip argument - continue; - } + if (!strcmp(tok, "-pullup") || !strcmp(tok, "-pullup_resistor")) { + skip_next = true; // skip argument + continue; + } args.push_back(tok); } -- cgit v1.2.3