IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 20179


Ignore:
Timestamp:
Oct 15, 2008, 12:32:42 PM (18 years ago)
Author:
bills
Message:

use eq instead of == to compare string

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/warp_skycell.pl

    r20178 r20179  
    221221        # the stats includes ACCEPT as a boolean: convert the T/F value to 0/1
    222222        my $acceptFlag = &value_for_flag ($cmdflags, "-accept");
    223         $accept = ($acceptFlag == "T") ? 1 : 0;
     223        $accept = ($acceptFlag eq "T") ? 1 : 0;
    224224        if ($accept && !$ipprc->file_exists($outputPSF)) {
    225225            $accept = 0;
Note: See TracChangeset for help on using the changeset viewer.