X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmBinEntry.cxx;h=f336472c5e7e6afd515bcadb808862fb3cc95d7e;hb=eaf1ca262cccaac8f8560427a305f10cc6f9e517;hp=d15def828fbcb27e2a59ba0763fdebabd4be7cf1;hpb=43d88e7ca1386013ee755c4eee3dc0519d335ec3;p=gdcm.git diff --git a/src/gdcmBinEntry.cxx b/src/gdcmBinEntry.cxx index d15def82..f336472c 100644 --- a/src/gdcmBinEntry.cxx +++ b/src/gdcmBinEntry.cxx @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmBinEntry.cxx,v $ Language: C++ - Date: $Date: 2004/09/23 10:17:26 $ - Version: $Revision: 1.30 $ + Date: $Date: 2004/09/27 08:39:05 $ + Version: $Revision: 1.32 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or - http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details. + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -71,7 +71,7 @@ void gdcmBinEntry::Print(std::ostream &os) { gdcmDocEntry::Print(os); std::ostringstream s; - void *binArea = GetBinArea(); + void* binArea = GetBinArea(); if (binArea) { //s << " [" << GDCM_BINLOADED @@ -99,10 +99,10 @@ void gdcmBinEntry::Print(std::ostream &os) * @param fp already open file pointer * @param filetype type of the file to be written */ -void gdcmBinEntry::Write(FILE *fp, FileType filetype) +void gdcmBinEntry::Write(FILE* fp, FileType filetype) { gdcmDocEntry::Write(fp, filetype); - void *binArea = GetBinArea(); + void* binArea = GetBinArea(); int lgr = GetLength(); if (binArea) {