- Timestamp:
- May 3, 2010, 8:41:49 AM (16 years ago)
- Location:
- branches/tap_branches
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/tap_branches
- Property svn:mergeinfo changed
-
branches/tap_branches/Ohana
-
Property svn:mergeinfo
set to (toggle deleted branches)
/trunk/Ohana merged eligible /branches/eam_branches/Ohana.20100407 27635-27772 /branches/pap_delete/Ohana 27530-27595
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/tap_branches/Ohana/src/imregister/photreg/match.c
r3536 r27838 2 2 # include "photreg.h" 3 3 4 int *match_criteria (PhotPars *photdata, int Nphotdata, int *Nmatch) {4 off_t *match_criteria (PhotPars *photdata, off_t Nphotdata, off_t *Nmatch) { 5 5 6 int i, j;7 int N, NMATCH;8 int *match;9 int reject;6 off_t i, j; 7 off_t N, NMATCH; 8 off_t *match; 9 off_t reject; 10 10 11 11 /* create selection index */ 12 12 N = 0; 13 13 NMATCH = 1000; 14 ALLOCATE (match, int, NMATCH);14 ALLOCATE (match, off_t, NMATCH); 15 15 16 16 /* find entries that matches criteria */ … … 27 27 if (N == NMATCH) { 28 28 NMATCH += 1000; 29 REALLOCATE (match, int, NMATCH);29 REALLOCATE (match, off_t, NMATCH); 30 30 } 31 31 }
Note:
See TracChangeset
for help on using the changeset viewer.
