We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe add MAN page to github for potential edits
I see in code --check returns three possible values.
Maybe note this in MAN page and/or --help text
const char *check_status_str(int check) { switch (check) { case 1: return "OK"; case 2: return "WARNING"; case 3: return "ERROR"; }
return "";
}
The text was updated successfully, but these errors were encountered:
Man page is included in the repository: https://github.com/tjko/jpeginfo/blob/master/jpeginfo.1
I added note about the exit code in the man page (6bcb601)
Sorry, something went wrong.
No branches or pull requests
Maybe add MAN page to github for potential edits
I see in code --check returns three possible values.
Maybe note this in MAN page and/or --help text
const char *check_status_str(int check)
{
switch (check) {
case 1:
return "OK";
case 2:
return "WARNING";
case 3:
return "ERROR";
}
}
The text was updated successfully, but these errors were encountered: