and for tabs

This commit is contained in:
Benji Dial 2022-03-20 21:38:50 -04:00 committed by GitHub
parent 66e3c5ef5c
commit 1dd3885bb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ int init_config(size_t config_size) {
size_t skip = 0;
while ((config_addr[i + skip] == '\r')
|| ((!i || config_addr[i - 1] == '\n')
&& config_addr[i + skip] == ' ')) {
&& (config_addr[i + skip] == ' ' || config_addr[i + skip] == '\t'))) {
skip++;
}
if (skip) {