From 09bda7d735bfd96c8efacffd71960e119ca7e0b7 Mon Sep 17 00:00:00 2001 From: jean-pierre roux Date: Tue, 9 Mar 2010 10:12:25 +0000 Subject: [PATCH] Avoid warnings --- lib/src1/bruker2dicom.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src1/bruker2dicom.cxx b/lib/src1/bruker2dicom.cxx index 9cc2301..36313ce 100644 --- a/lib/src1/bruker2dicom.cxx +++ b/lib/src1/bruker2dicom.cxx @@ -974,8 +974,8 @@ void Bruker2Dicom::dealWithCarto(GDCM_NAME_SPACE::DirListType &fileNames, int NX // deal with MatLab-generated Carto file. // ----------------------------------------------------- - char *code[] = { "ADC", "adc", "TTP", "ttp", "PEAK", "peak", "" }; // add more carto file name identifiers if necessary; end with "" - char *separator[] = { "_", ".", "-", "" }; // add more, if necessary, to ckeck for 2dseq.ADC, 2dseq_ADC, 2dseq-ADC, etc; end with "" + const char *code[] = { "ADC", "adc", "TTP", "ttp", "PEAK", "peak", "" }; // add more carto file name identifiers if necessary; end with "" + const char *separator[] = { "_", ".", "-", "" }; // add more, if necessary, to ckeck for 2dseq.ADC, 2dseq_ADC, 2dseq-ADC, etc; end with "" int icode; int iseparator; GDCM_NAME_SPACE::DirListType::iterator it; -- 2.45.1