Skip to content

Commit

Permalink
Fix const warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccxvii committed Mar 6, 2025
1 parent 7ab9c2e commit 20b9296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/pdf/pdf-clean-file.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ void pdf_rearrange_pages(fz_context *ctx, pdf_document *doc, int count, const in

void pdf_clean_file(fz_context *ctx, char *infile, char *outfile, char *password, pdf_clean_options *opts, int argc, char *argv[])
{
const pdf_clean_options default_opts = { 0 };
pdf_clean_options default_opts = { 0 };
pdf_document *pdf = NULL;
int *pages = NULL;
int cap, len, page;
Expand Down

0 comments on commit 20b9296

Please sign in to comment.