Ignore:
Timestamp:
Oct 9, 2002, 11:12:52 AM (23 years ago)
Author:
lemeur
Message:

mise aux normes de for(int k= ...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fitsntuple.cc

    r1371 r2209  
    183183   for (k=0; k<ncols;k++)
    184184     {
    185        for(int j = 0; j < nentries; j++) column[j]= dobj_->GetVal(j,k);
     185       int j;
     186       for(j = 0; j < nentries; j++) column[j]= dobj_->GetVal(j,k);
    186187       os.PutColToFits(k, nentries, column);
    187188     }
Note: See TracChangeset for help on using the changeset viewer.