Changeset 27840 for branches/simtest_nebulous_branches/extsrc/gpcsw/gpcsrc/fits/burntool/stardetect.c
- Timestamp:
- May 3, 2010, 8:50:52 AM (16 years ago)
- Location:
- branches/simtest_nebulous_branches
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
extsrc/gpcsw/gpcsrc/fits/burntool/stardetect.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/simtest_nebulous_branches
- Property svn:mergeinfo changed
-
branches/simtest_nebulous_branches/extsrc/gpcsw/gpcsrc/fits/burntool/stardetect.c
r23490 r27840 98 98 boxbuf[nbox].ex, boxbuf[nbox].ey, 99 99 boxbuf[nbox].max); 100 fflush(stdout); 100 101 } 101 102 /* Mark the veto mask so as not to trigger on this one again */ … … 139 140 printf(" %d %d %d %d\n", 140 141 boxbuf[nbox].y0m, boxbuf[nbox].y0p,boxbuf[nbox].y1m, boxbuf[nbox].y1p); 142 fflush(stdout); 141 143 } 142 144 xon = -1; … … 191 193 cell->burn = (OBJBOX *)calloc(cell->nburn, sizeof(OBJBOX)); 192 194 cell->star = (OBJBOX *)calloc(cell->nstar, sizeof(OBJBOX)); 195 if( cell->burn == NULL || cell->star == NULL) { 196 fprintf(stderr, "\rerror: failed to alloc burn box\n"); 197 exit(-678); 198 } 193 199 194 200 /* Copy the boxes to the cell info structure */
Note:
See TracChangeset
for help on using the changeset viewer.
