Add newline to arguments check fail

pull/5/head
venji10 2022-02-26 17:27:45 +01:00 zatwierdzone przez GitHub
rodzic 8295e49485
commit f696b9a341
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -164,7 +164,7 @@ int main(int argc, char *argv[]) {
// check if number of arguments is correct // check if number of arguments is correct
if (argc <= 1 || strlen(argv[1]) <= 0) { if (argc <= 1 || strlen(argv[1]) <= 0) {
printf("\u001b[0mplease provide the filename as the first input argument"); printf("\u001b[0mplease provide the filename as the first input argument\n");
fflush(stdout); fflush(stdout);
return 0; return 0;
} }