IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 11, 2016, 10:23:42 PM (10 years ago)
Author:
eugene
Message:

modify to pass with extremely pedantic build; force consistency for signed vs unsigned and int sizes; various relastro updates

Location:
trunk/Ohana
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana

  • trunk/Ohana/src/libfits/matrix/F_convert_format.c

    r38062 r39457  
    1919  in  = (inMode  *) matrix[0].buffer;                   \
    2020  for (i = 0; i < Npixels; i++, out++, in++)            \
    21     if (*in == inBlank) {                               \
     21    if (*in == (inMode) inBlank) {                      \
    2222      *out = (MY_NAN);                                  \
    2323    } else {                                            \
     
    3232  in  = (inMode  *) matrix[0].buffer;           \
    3333  for (i = 0; i < Npixels; i++, out++, in++)    \
    34     if (*in == inBlank) {                       \
     34    if (*in == (inMode) inBlank) {                      \
    3535      *out = (MY_NAN);                          \
    3636    } else {                                    \
     
    4545  in  = (inMode  *)matrix[0].buffer + Npixels - 1;      \
    4646  for (i = 0; i < Npixels; i++, out--, in--)            \
    47     if (*in == inBlank) {                               \
     47    if (*in == (inMode) inBlank) {                              \
    4848      *out = (MY_NAN);                                  \
    4949    } else {                                            \
Note: See TracChangeset for help on using the changeset viewer.