IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 7, 2007, 1:58:17 PM (19 years ago)
Author:
jhoblitt
Message:

update psAbort() API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmHDUGenerate.c

    r11254 r11687  
    119119        break;
    120120    default:
    121         psAbort(__func__, "Shouldn't ever get here!\n");
     121        psAbort("Shouldn't ever get here!\n");
    122122    }
    123123
     
    381381            psRegion *trimsec = psMetadataLookupPtr(&mdok, cell->concepts, "CELL.TRIMSEC"); // Trim section
    382382            if (!mdok || !trimsec) {
    383                 psAbort(__func__, "Shouldn't ever get here --- CELL.TRIMSEC should have been set above.\n");
     383                psAbort("Shouldn't ever get here --- CELL.TRIMSEC should have been set above.\n");
    384384            }
    385385            psList *biassecs = psMetadataLookupPtr(&mdok, cell->concepts, "CELL.BIASSEC"); // Bias secionts
    386386            if (!mdok || !biassecs) {
    387                 psAbort(__func__, "Shouldn't ever get here --- CELL.BIASSEC should have been set above.\n");
     387                psAbort("Shouldn't ever get here --- CELL.BIASSEC should have been set above.\n");
    388388            }
    389389            psListIterator *biassecsIter = psListIteratorAlloc(biassecs, PS_LIST_HEAD, false); // Iterator
     
    557557        return pmHDUGenerateForChip(cell->parent);
    558558    default:
    559         psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
     559        psAbort("Shouldn't ever get here: check your camera format configuration.\n");
    560560    }
    561561    return false;
     
    605605        return pmHDUGenerateForFPA(chip->parent);
    606606    default:
    607         psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
     607        psAbort("Shouldn't ever get here: check your camera format configuration.\n");
    608608    }
    609609    return false;
     
    647647        }
    648648    default:
    649         psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
     649        psAbort("Shouldn't ever get here: check your camera format configuration.\n");
    650650    }
    651651    return false;
Note: See TracChangeset for help on using the changeset viewer.