From: Michael R Sweet Date: Fri, 9 Apr 2021 14:12:45 +0000 (-0400) Subject: Fix typo in example code (Issue #163) X-Git-Tag: v2.4b1~149 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83c55b4b4e9d29f57d38687fd5d20de58e94a77d;p=thirdparty%2Fcups.git Fix typo in example code (Issue #163) --- diff --git a/CHANGES.md b/CHANGES.md index 421b250550..e8ce786c98 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -33,7 +33,7 @@ CUPS v2.4rc1 (Pending) negotiation failed (Apple #5907) - `httpUpdate` did not reset the socket file descriptor when the TLS negotiation failed (Apple #5915) -- Documentation fixes (Issue #92) +- Documentation fixes (Issue #92, Issue #163) - Localization updates (Issue #123, Issue #129, Issue #134, Issue #146, Issue #164) - USB quirk updates (Apple #5766, Apple #5838, Apple #5843, Apple #5867) diff --git a/cups/cupspm.md b/cups/cupspm.md index f619641506..c5d50f697c 100644 --- a/cups/cupspm.md +++ b/cups/cupspm.md @@ -262,7 +262,7 @@ of destinations: * return... */ - cupsFreeDests(user_data.num_dests, user_dasta.dests); + cupsFreeDests(user_data.num_dests, user_data.dests); *dests = NULL; diff --git a/doc/help/cupspm.epub b/doc/help/cupspm.epub index e43ba8f0dd..7554575775 100644 Binary files a/doc/help/cupspm.epub and b/doc/help/cupspm.epub differ diff --git a/doc/help/cupspm.html b/doc/help/cupspm.html index 56a1f9cec2..3c20b7128b 100644 --- a/doc/help/cupspm.html +++ b/doc/help/cupspm.html @@ -868,7 +868,7 @@ my_get_dests(cups_ptype_t type, cups_ptype_t mask, * return... */ - cupsFreeDests(user_data.num_dests, user_dasta.dests); + cupsFreeDests(user_data.num_dests, user_data.dests); *dests = NULL;