Ignore:
Timestamp:
11/04/02 10:33:51 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc

    r1574 r1575  
    366366    }
    367367
    368     fIn->read(&outpars, sizeof(struct outputpars));
     368    fIn->read((Byte_t*)&outpars, sizeof(struct outputpars));
    369369
    370370    ProcessHeader(outpars);
     
    381381
    382382    struct filterresults filterres;
    383     fIn->read(&filterres, sizeof(struct filterresults));
     383    fIn->read((Byte_t*)&filterres, sizeof(struct filterresults));
    384384    /*
    385385     int   imax_alt_arcs;            // maximum altitude reached during the run
     
    633633
    634634    // read the eventrecord with the recorded number of stored pixels
    635     fIn->read(&event, size1+size2);
     635    fIn->read((Byte_t*)&event, size1+size2);
    636636
    637637    ProcessEvent(event);
Note: See TracChangeset for help on using the changeset viewer.