]> Creatis software - clitk.git/commitdiff
Remove compilation warnings
authortbaudier <thomas.baudier@creatis.insa-lyon.fr>
Wed, 11 Apr 2018 14:31:41 +0000 (16:31 +0200)
committertbaudier <thomas.baudier@creatis.insa-lyon.fr>
Wed, 11 Apr 2018 14:31:41 +0000 (16:31 +0200)
Cosmetics removing tabs by spaces

common/clitkXdrImageIOReader.cxx
vv/vvDeformableRegistration.cxx

index ea476d7c4dffa1e10c6d607d4f9d3182ec1aa875..2e5ad4f2300234e8cf4b040044bae6c8b1b6a1c7 100644 (file)
@@ -202,10 +202,10 @@ static char *scan_header(const char *file, const char *name, int offset, int rem
 
 static int get_nki_compressed_size(FILE *f)
 {
-  NKI_MODE2            Header;
-  int                  iMode;
+  NKI_MODE2            Header;
+  int                  iMode;
 
-  fread((void *)&Header, sizeof(Header), 1 , f);
+  int tempReturn = fread((void *)&Header, sizeof(Header), 1 , f);
 
   iMode = Header.iMode;
 
@@ -593,7 +593,7 @@ int clitk::XdrImageIO::ReadImageInformationWithError()
   fstream = fopen(file, "rt");
   if (fstream == NULL) return ER_XDR_OPEN;
 
-  fgets(temp, 500, fstream);
+  char* tempReturn = fgets(temp, 500, fstream);
   fclose(fstream);
 
   if (memcmp(temp, "# AVS field file (produced by avs_nfwrite.c)", 44)==0) forcenoswap=1;
@@ -938,7 +938,7 @@ bool clitk::XdrImageIO::CanReadFile(const char* FileNameToRead)
 //        AVSerror("Couldn't open file " << FileNameToRead);
     return false;
 //    }
-  fgets(temp, 500, fstream);
+  char* tempReturn = fgets(temp, 500, fstream);
   fclose(fstream);
 
   if (memcmp(temp, "# AVS", 5)==0)
index 12a2959aa33679b8ab5f6bde9349e0d859eeba5c..980b3e7d1f86633811d1f8afe08ce93a5214f199 100644 (file)
@@ -54,8 +54,8 @@ vvDeformableRegistration::vvDeformableRegistration(vvImage::Pointer image,unsign
 void vvDeformableRegistration::abort()
 {
   aborted=true;
-  std::system("killall deformableregistration");
-  std::system("killall clitkVFMerge");
+  int tempReturn = std::system("killall deformableregistration");
+  tempReturn = std::system("killall clitkVFMerge");
 }
 
 unsigned int vvDeformableRegistration::getProgress()
@@ -71,16 +71,16 @@ void vvDeformableRegistration::cleanup(int frame_number) //remove temporary file
   for (int i=0; i<frame_number; i++) {
     std::stringstream filename;
     filename << temp_dir << "/deformation_" << i << ".vf";
-    std::system((std::string("rm ") + filename.str()).c_str());
+    int tempReturn = std::system((std::string("rm ") + filename.str()).c_str());
   }
   for (int i=0; i<frame_number; i++) {
     std::stringstream filename;
     filename << temp_dir << "/temp_" << i << ".vox";
-    std::system(("rm " + filename.str()).c_str());
+    int tempReturn = std::system(("rm " + filename.str()).c_str());
   }
   std::stringstream filename;
   filename << temp_dir;
-  std::system(("rm -r " + filename.str()).c_str());
+  int tempReturn = std::system(("rm -r " + filename.str()).c_str());
 }
 
 void vvDeformableRegistration::partial_run(int low_index,int high_index,int refimage,std::string ref_file)
@@ -111,7 +111,7 @@ void vvDeformableRegistration::partial_run(int low_index,int high_index,int refi
       registration_command << " --vf=" << old_vf.str();
     }
     DD(registration_command.str());
-    std::system(registration_command.str().c_str());
+    int tempReturn = std::system(registration_command.str().c_str());
     progress_mutex.lock();
     progress++;
     progress_mutex.unlock();
@@ -170,7 +170,7 @@ void vvDeformableRegistration::run()
   command << "clitkZeroVF -i " << temp_dir << "/deformation_" << computed_vf << ".vf -o "  << temp_dir <<
           "/deformation_" << refimage << ".vf";
   DD(command.str()); //create zero VF for the ref image
-  std::system(command.str().c_str());
+  int tempReturn = std::system(command.str().c_str());
   command.str("");
   command << "clitkVFMerge ";
   for (unsigned int i=0; i<images.size(); i++) command << temp_dir << "/deformation_" << i << ".vf ";
@@ -179,10 +179,10 @@ void vvDeformableRegistration::run()
   command << " --zorigin " << images[0]->GetOrigin()[2];
   command << " -o " << output_filename << std::endl;
   DD(command.str());
-  std::system(command.str().c_str());
+  tempReturn = std::system(command.str().c_str());
   cleanup(images.size());
   if (aborted) {
-    std::system(("rm " + output_filename).c_str());
+    tempReturn = std::system(("rm " + output_filename).c_str());
     return;
   }
   vvImageReader::Pointer reader = vvImageReader::New();