add return

This commit is contained in:
Alexander Popov 2023-06-03 23:41:22 +03:00
parent 125ec31bbb
commit 834aef432e
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ int main(int argc, char const *argv[])
int green = 128;
int blue = 64;
printf("#%.2x%.2x%.2x\n", red, green, blue);
printf("#%.2x%.2x%.2x\n", red, green, blue); //#008040
return 0;
}