Skip to content

Commit

Permalink
Fix compiler error.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Nov 21, 2024
1 parent 39f9e25 commit 5630edc
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tools/ipptool.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
// information.
//

//
// Include necessary headers...
//

#include <cups/cups-private.h>
#include <cups/raster-testpage.h>
#include <regex.h>
Expand Down Expand Up @@ -323,7 +319,7 @@ main(int argc, // I - Number of command-line args

if (i >= argc)
{
cupsLangPrintf(stderr, _("%s: Missing token after '--bearer-token'."), "ipptool");
_cupsLangPrintf(stderr, _("%s: Missing token after '--bearer-token'."), "ipptool");
free_data(data);
usage();
}
Expand All @@ -336,7 +332,7 @@ main(int argc, // I - Number of command-line args

if (i >= argc)
{
cupsLangPrintf(stderr, _("%s: Missing client name after '--client-name'."), "ipptool");
_cupsLangPrintf(stderr, _("%s: Missing client name after '--client-name'."), "ipptool");
free_data(data);
usage();
}
Expand Down

0 comments on commit 5630edc

Please sign in to comment.