Skip to content

Commit

Permalink
Cleanup: tab -> whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelortmann committed Jul 7, 2024
1 parent 7ea79d8 commit 59fe9ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mod/share.mod/uf_features.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ static void uf_features_parse(int idx, char *par)
len += strlcpy(uff_sbuf + len, ul->entry->feature, (sizeof uff_sbuf) - len);
} else {
/* quirk workaround: add trailing whitespace */
len += strlcpy(uff_sbuf + len, ul->entry->feature, (sizeof uff_sbuf) - len);
len += strlcpy(uff_sbuf + len, ul->entry->feature, (sizeof uff_sbuf) - len);
uff_sbuf[len++] = ' ';
}
}
Expand Down Expand Up @@ -290,7 +290,7 @@ static char *uf_features_dump(int idx)
len += strlcpy(uff_sbuf + len, ul->entry->feature, (sizeof uff_sbuf) - len);
} else {
/* quirk workaround: add trailing whitespace */
len += strlcpy(uff_sbuf + len, ul->entry->feature, (sizeof uff_sbuf) - len);
len += strlcpy(uff_sbuf + len, ul->entry->feature, (sizeof uff_sbuf) - len);
uff_sbuf[len++] = ' ';
}
}
Expand Down

0 comments on commit 59fe9ed

Please sign in to comment.