IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2210


Ignore:
Timestamp:
Oct 27, 2004, 9:35:59 AM (22 years ago)
Author:
desonia
Message:

* empty log message *

Location:
trunk/psLib/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psAstronomyErrors.h

    r1787 r2210  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-09-11 00:43:54 $
     9 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-10-27 19:35:55 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3030
    3131//~Start #define PS_ERRORTEXT_$1 "$2"
    32 #define PS_ERRORTEXT_ ""
    3332//~End
    3433
  • trunk/psLib/src/image/psImageIO.c

    r2204 r2210  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-10-27 00:57:31 $
     9 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-10-27 19:35:58 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3737    psS32 anynull = 0;
    3838    psS32 bitPix = 0;             /* Pixel type */
    39     psS64 nAxes[3];
    40     psS64 firstPixel[3];         /* lower-left corner of image subset */
    41     psS64 lastPixel[3];          /* upper-right corner of image subset */
    42     psS64 increment[3];          /* increment for image subset */
     39    long nAxes[3];
     40    long firstPixel[3];         /* lower-left corner of image subset */
     41    long lastPixel[3];          /* upper-right corner of image subset */
     42    long increment[3];          /* increment for image subset */
    4343    char fitsErr[80] = "";      /* CFITSIO error message string */
    4444    psS32 hduType = IMAGE_HDU;
     
    240240    psS32 status = 0;             /* CFITSIO status */
    241241    fitsfile *fptr = NULL;      /* pointer to the FITS file */
    242     psS64 nAxes[3];              /* Image axis vars */
    243     psS64 firstPixel[3];         /* First Pixel to read */
    244     psS64 lastPixel[3];          /* Last Pixel to read */
     242    long nAxes[3];              /* Image axis vars */
     243    long firstPixel[3];         /* First Pixel to read */
     244    long lastPixel[3];          /* Last Pixel to read */
    245245    char fitsErr[80];           /* FITSIO message string */
    246246    psS32 datatype = 0;           /* the datatype of the image */
  • trunk/psLib/src/sys/psMemory.c

    r2204 r2210  
    88*  @author Robert Lupton, Princeton University
    99*
    10 *  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2004-10-27 00:57:31 $
     10*  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2004-10-27 19:35:59 $
    1212*
    1313*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    463463                }
    464464
    465                 fprintf(fd, "   %20s:%-4d %ld\n", iter->file, iter->lineno, iter->id);
     465                fprintf(fd, "   %20s:%-4d %ld\n", iter->file, (int)iter->lineno, (long)iter->id);
    466466            }
    467467        }
  • trunk/psLib/src/sysUtils/psMemory.c

    r2204 r2210  
    88*  @author Robert Lupton, Princeton University
    99*
    10 *  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2004-10-27 00:57:31 $
     10*  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2004-10-27 19:35:59 $
    1212*
    1313*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    463463                }
    464464
    465                 fprintf(fd, "   %20s:%-4d %ld\n", iter->file, iter->lineno, iter->id);
     465                fprintf(fd, "   %20s:%-4d %ld\n", iter->file, (int)iter->lineno, (long)iter->id);
    466466            }
    467467        }
Note: See TracChangeset for help on using the changeset viewer.