Change return code to 0

This commit is contained in:
Luka Barbić 2020-06-18 20:38:33 +02:00 committed by GitHub
parent 0c152fcd72
commit 7372c572d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,5 +2,5 @@
int main(void) {
printf("good\n");
return 1;
return 0;
}