]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix compiler error.
authorMichael R Sweet <msweet@msweet.org>
Thu, 21 Nov 2024 19:26:38 +0000 (14:26 -0500)
committerMichael R Sweet <msweet@msweet.org>
Thu, 21 Nov 2024 19:26:38 +0000 (14:26 -0500)
tools/ipptool.c

index 326cfe598f66f8083bb5aefb6518636ba0cd7ff3..fc15dce8d1c2f4472ca2e3f5d5be71e844d13e29 100644 (file)
 // information.
 //
 
-//
-// Include necessary headers...
-//
-
 #include <cups/cups-private.h>
 #include <cups/raster-testpage.h>
 #include <regex.h>
@@ -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();
       }
@@ -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();
       }