Skip to content

Commit

Permalink
Fix minor errors in hardcoded strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
deven committed May 10, 2024
1 parent a02db51 commit 70e161e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/pdf_data
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ our @option_list = (
# Help message.
our $help_message = <<EOF;
Usage: $program [-v] [-i] [-o <output.pdf>] [<options>] [<input.pdf>]\n";
Usage: $program [-v] [-i] [-o <output.pdf>] [<options>] [<input.pdf>]
Utility script for PDF::Data module.
Expand Down Expand Up @@ -107,7 +107,7 @@ my $time = time;

# Attempt to get file modification timestamp.
unless ($input_pdf eq "-") {
die "$input_pdf $!\n" unless -e $input_pdf;
die "$input_pdf: $!\n" unless -e $input_pdf;
$time = (stat _)[9];
}

Expand Down

0 comments on commit 70e161e

Please sign in to comment.