Changeset 2210
- Timestamp:
- Oct 27, 2004, 9:35:59 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
astronomy/psAstronomyErrors.h (modified) (2 diffs)
-
image/psImageIO.c (modified) (3 diffs)
-
sys/psMemory.c (modified) (2 diffs)
-
sysUtils/psMemory.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psAstronomyErrors.h
r1787 r2210 7 7 * @author Robert DeSonia, MHPCC 8 8 * 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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 30 30 31 31 //~Start #define PS_ERRORTEXT_$1 "$2" 32 #define PS_ERRORTEXT_ ""33 32 //~End 34 33 -
trunk/psLib/src/image/psImageIO.c
r2204 r2210 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 3$ $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 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 37 37 psS32 anynull = 0; 38 38 psS32 bitPix = 0; /* Pixel type */ 39 psS64nAxes[3];40 psS64firstPixel[3]; /* lower-left corner of image subset */41 psS64lastPixel[3]; /* upper-right corner of image subset */42 psS64increment[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 */ 43 43 char fitsErr[80] = ""; /* CFITSIO error message string */ 44 44 psS32 hduType = IMAGE_HDU; … … 240 240 psS32 status = 0; /* CFITSIO status */ 241 241 fitsfile *fptr = NULL; /* pointer to the FITS file */ 242 psS64nAxes[3]; /* Image axis vars */243 psS64firstPixel[3]; /* First Pixel to read */244 psS64lastPixel[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 */ 245 245 char fitsErr[80]; /* FITSIO message string */ 246 246 psS32 datatype = 0; /* the datatype of the image */ -
trunk/psLib/src/sys/psMemory.c
r2204 r2210 8 8 * @author Robert Lupton, Princeton University 9 9 * 10 * @version $Revision: 1.4 2$ $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 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 463 463 } 464 464 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); 466 466 } 467 467 } -
trunk/psLib/src/sysUtils/psMemory.c
r2204 r2210 8 8 * @author Robert Lupton, Princeton University 9 9 * 10 * @version $Revision: 1.4 2$ $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 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 463 463 } 464 464 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); 466 466 } 467 467 }
Note:
See TracChangeset
for help on using the changeset viewer.
