From: Steinar H. Gunderson Date: Sat, 24 Oct 2009 11:41:11 +0000 (+0200) Subject: Fix a ne/!= issue, for the second time. X-Git-Url: https://git.sesse.net/?p=pr0n;a=commitdiff_plain;h=a45b4dbe94250612732fc8c06168b6e1cf6c6d31 Fix a ne/!= issue, for the second time. --- diff --git a/perl/Sesse/pr0n/Common.pm b/perl/Sesse/pr0n/Common.pm index 54ba1d3..277d699 100644 --- a/perl/Sesse/pr0n/Common.pm +++ b/perl/Sesse/pr0n/Common.pm @@ -915,7 +915,7 @@ sub make_infobox { if (defined($info->{'ExposureBiasValue'}) && $info->{'ExposureBiasValue'} ne "0") { push @classic_fields, [ $info->{'ExposureBiasValue'} . " EV", 0 ]; - } elsif (defined($info->{'ExposureCompensation'}) && $info->{'ExposureCompensation'} != 0) { + } elsif (defined($info->{'ExposureCompensation'}) && $info->{'ExposureCompensation'} ne "0") { push @classic_fields, [ $info->{'ExposureCompensation'} . " EV", 0 ]; }