From: Michael R Sweet Date: Thu, 21 Nov 2024 19:26:38 +0000 (-0500) Subject: Fix compiler error. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5630edc59c7219f242d5f03f77df319150455a59;p=thirdparty%2Fcups.git Fix compiler error. --- diff --git a/tools/ipptool.c b/tools/ipptool.c index 326cfe598f..fc15dce8d1 100644 --- a/tools/ipptool.c +++ b/tools/ipptool.c @@ -10,10 +10,6 @@ // information. // -// -// Include necessary headers... -// - #include #include #include @@ -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(); }