Changeset 27435 for trunk/Ohana/src/imregister/detrend/altpath.c
- Timestamp:
- Mar 24, 2010, 11:22:25 AM (16 years ago)
- Location:
- trunk/Ohana
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/imregister/detrend/altpath.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana
-
Property svn:mergeinfo
set to
/branches/eam_branches/20091201/Ohana merged eligible /branches/eam_branches/largefiles.20100314/Ohana merged eligible
-
Property svn:mergeinfo
set to
-
trunk/Ohana/src/imregister/detrend/altpath.c
r7080 r27435 2 2 # include "detrend.h" 3 3 4 int SetAltpath (FITS_DB *db, DetReg *image, int Nimage, Match *match, int Nmatch) {4 int SetAltpath (FITS_DB *db, DetReg *image, off_t Nimage, Match *match, off_t Nmatch) { 5 5 6 int i, j, n, found, status, Nlist; 7 int *list, *current; 6 int status, found; 7 off_t i, j, n, Nlist; 8 off_t *list, *current; 8 9 char *dBPath, infile[256], outfile[256], line[1024]; 9 10 struct stat statbuf; 10 11 11 ALLOCATE (current, int, Nimage);12 ALLOCATE (list, int, Nimage);12 ALLOCATE (current, off_t, Nimage); 13 ALLOCATE (list, off_t, Nimage); 13 14 Nlist = 0; 14 15
Note:
See TracChangeset
for help on using the changeset viewer.
