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
ARGB has 4 components to save now...
diff --git a/qrenc.c b/qrenc.c index 78f1c12..796ab01 100644 --- a/qrenc.c +++ b/qrenc.c @@ -189,7 +189,7 @@ static int color_set(unsigned char color[4], const char *value) { int len = strlen(value); int i, count; - unsigned int col[3]; + unsigned int col[4]; if(len == 6) { count = sscanf(value, "%02x%02x%02x%n", &col[0], &col[1], &col[2], &len); if(count < 3 || len != 6) {
The text was updated successfully, but these errors were encountered:
relevant pull request: #63
Sorry, something went wrong.
Thank you for the notification. Now I merged #63 and closed this bug.
No branches or pull requests
ARGB has 4 components to save now...
The text was updated successfully, but these errors were encountered: