Fixed goto indentation

master
Tibor Bizjak 2023-06-23 20:36:56 +02:00
parent 2d2e6880a2
commit b81504f2ee
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ void expand(char *s, char *t, int n)
CHECK_OVERFLOW(i, n);
t[i] = *s;
}
terminate:
t[i] = '\0';
terminate:
t[i] = '\0';
}
/* getstr: copies stdin to array s of length n, returns size of string or