IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 24, 2010, 11:22:25 AM (16 years ago)
Author:
eugene
Message:

large update merging in changes for Ohana to support large files

Location:
trunk/Ohana
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana

  • trunk/Ohana/src/imregister/detrend/altpath.c

    r7080 r27435  
    22# include "detrend.h"
    33
    4 int SetAltpath (FITS_DB *db, DetReg *image, int Nimage, Match *match, int Nmatch) {
     4int SetAltpath (FITS_DB *db, DetReg *image, off_t Nimage, Match *match, off_t Nmatch) {
    55 
    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;
    89  char *dBPath, infile[256], outfile[256], line[1024];
    910  struct stat statbuf;
    1011
    11   ALLOCATE (current, int, Nimage);
    12   ALLOCATE (list, int, Nimage);
     12  ALLOCATE (current, off_t, Nimage);
     13  ALLOCATE (list, off_t, Nimage);
    1314  Nlist = 0;
    1415
Note: See TracChangeset for help on using the changeset viewer.