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
In Compiling Programs That Use the CUPS API section, for running the code snippet with C the command wriiten is:
gcc -o simple cups-config --cflags simple.c cups-config --libs ./simple
cups-config --cflags
cups-config --libs
but it should be
gcc -o sample cups-config --cflags sample.c cups-config --libs ./sample
as the C file name is sample.c .
The text was updated successfully, but these errors were encountered:
Fix example source filename in CUPS PM (Issue #5682)
bea505c
I opted to change the initial instructions to use the filename "simple.c" instead.
[master bea505c] Fix example source filename in CUPS PM (Issue #5682)
Sorry, something went wrong.
michaelrsweet
No branches or pull requests
In Compiling Programs That Use the CUPS API section, for running the code snippet with C
the command wriiten is:
but it should be
as the C file name is sample.c .
The text was updated successfully, but these errors were encountered: