RQ : the JPR doesn't appear in the ChangeLog... normal for him
-- BeNours
2003-07-03 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
* vtk/Makefile.am: vtkGdcmReader.h should now be cleany installed
when using make instal.
+ * src/gdcmFile.cxx : bug fix under Window after JPR commit
+ RQ : the JPR doesn't appear in the ChangeLog... normal for him
2003-07-03 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
* setup.py : adding include dir of jpeg lib to compile all sources
return false;
}
- int res = gdcm_read_JPEG_file (destination);
- if (DEBUG)
- printf ("res : %d\n",res);
+ bool res = (bool)gdcm_read_JPEG_file (destination);
return res;
}
// TODO :
// any trick not to have to allocate temporary buffer is welcome ...
char *x = newDest;
- for (int i=0;i<l; i++) {
+ for (int j=0;j<l; j++) {
*(x++) = *(a++);
*(x++) = *(b++);
*(x++) = *(c++);