icetime: indent with tabs

This commit is contained in:
Maik Merten 2022-03-05 17:36:21 +01:00
parent 5b5c7ce599
commit c9ad6ca881
1 changed files with 9 additions and 9 deletions

View File

@ -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<std::string> 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);
}