Skip to content

Commit ba3e28d

Browse files
committed
Clean up compiler warnings.
1 parent fb7e38e commit ba3e28d

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

cups/file.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1911,7 +1911,7 @@ cups_fill(cups_file_t *fp) /* I - CUPS file */
19111911
fp->stream.avail_out = 0;
19121912
fp->crc = crc32(0L, Z_NULL, 0);
19131913

1914-
if ((status = inflateInit2(&(fp->stream), -15)) != Z_OK)
1914+
if (inflateInit2(&(fp->stream), -15) != Z_OK)
19151915
{
19161916
fp->eof = true;
19171917
errno = EIO;

cups/testcups.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ main(int argc, // I - Number of command-line arguments
169169
else if (!strcmp(argv[1], "print") && argc == 5)
170170
{
171171
// ./testcups print printer file interval
172-
cups_dest_t *dest; // Destination
173172
cups_dinfo_t *dinfo; // Destination information
174173
int interval, // Interval between writes
175174
job_id; // Job ID

0 commit comments

Comments
 (0)