summaryrefslogtreecommitdiff
path: root/cups/testdest.c
diff options
context:
space:
mode:
Diffstat (limited to 'cups/testdest.c')
-rw-r--r--cups/testdest.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/cups/testdest.c b/cups/testdest.c
index a65e09960..9b07e7771 100644
--- a/cups/testdest.c
+++ b/cups/testdest.c
@@ -410,7 +410,6 @@ print_file(http_t *http, /* I - Connection to destination */
{
cups_file_t *fp; /* File to print */
int job_id; /* Job ID */
- ipp_status_t status; /* Submission status */
const char *title; /* Title of job */
char buffer[32768]; /* File buffer */
ssize_t bytes; /* Bytes read/to write */
@@ -427,7 +426,7 @@ print_file(http_t *http, /* I - Connection to destination */
else
title = filename;
- if ((status = cupsCreateDestJob(http, dest, dinfo, &job_id, title, num_options, options)) > IPP_STATUS_OK_IGNORED_OR_SUBSTITUTED)
+ if (cupsCreateDestJob(http, dest, dinfo, &job_id, title, num_options, options) > IPP_STATUS_OK_IGNORED_OR_SUBSTITUTED)
{
printf("Unable to create job: %s\n", cupsLastErrorString());
cupsFileClose(fp);
@@ -454,7 +453,7 @@ print_file(http_t *http, /* I - Connection to destination */
cupsFileClose(fp);
- if ((status = cupsFinishDestDocument(http, dest, dinfo)) > IPP_STATUS_OK_IGNORED_OR_SUBSTITUTED)
+ if (cupsFinishDestDocument(http, dest, dinfo) > IPP_STATUS_OK_IGNORED_OR_SUBSTITUTED)
{
printf("Unable to send document: %s\n", cupsLastErrorString());
return;