IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 29, 2009, 10:10:32 PM (17 years ago)
Author:
eugene
Message:

fix typo in asserts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/20090715/psModules/src/objects/models/pmModel_SERSIC.c

    r25679 r25683  
    324324
    325325    psF64 z = pow (-log(limit), (1.0 / PAR[PM_PAR_7]));
    326     psAssert (isfinite(z, "fix this code: z should not be nan for %f", PAR[PM_PAR_7]));
     326    psAssert (isfinite(z), "fix this code: z should not be nan for %f", PAR[PM_PAR_7]);
    327327
    328328    psF64 radius = sigma * sqrt (2.0 * z);
    329     psAssert (isfinite(radius, "fix this code: radius should not be nan for %f, %f", PAR[PM_PAR_7], sigma));
     329    psAssert (isfinite(radius), "fix this code: radius should not be nan for %f, %f", PAR[PM_PAR_7], sigma);
    330330
    331331    if (isnan(radius))
Note: See TracChangeset for help on using the changeset viewer.