We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24e8d4b commit 7f55404Copy full SHA for 7f55404
1 file changed
tools/ippeveps.c
@@ -609,8 +609,6 @@ pdf_to_ps(const char *filename, /* I - Filename */
609
int pid; /* Process ID */
610
const char *pdf_argv[8]; /* Command-line arguments */
611
const char *value; /* Option value */
612
- const char *job_id, /* job-id value */
613
- *job_name; /* job-name value */
614
615
616
/*
@@ -628,7 +626,9 @@ pdf_to_ps(const char *filename, /* I - Filename */
628
626
*/
629
627
630
#ifdef __APPLE__
631
- char pdf_options[1024]; // Options
+ const char *job_id, // job-id value
+ *job_name; // job-name value
+ char pdf_options[1024]; // Options
632
633
if ((value = cupsGetOption("PageSize", num_options, options)) != NULL)
634
snprintf(pdf_options, sizeof(pdf_options), "PageSize=%s", value);
0 commit comments