Skip to content

Commit

Permalink
fix uninit var
Browse files Browse the repository at this point in the history
  • Loading branch information
malaterre committed Aug 11, 2022
1 parent 4de26b8 commit 9b7a87f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Applications/Cxx/gdcmdump.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ static int PrintPMTF(const std::string & filename, bool verbose)
}

const gdcm::DataSet& ds = reader.GetFile().GetDataSet();
int ret;
int ret = 0;
{
const gdcm::PrivateTag tpmtf(0x0029,0x1,"PMTF INFORMATION DATA");
const gdcm::PrivateTag tseq(0x0029,0x90,"PMTF INFORMATION DATA");
Expand Down Expand Up @@ -1516,7 +1516,7 @@ int main (int argc, char *argv[])
}
else if( printmedcom )
{
res += PrintMedComHistory(*it, csaname);
res += PrintMedComHistory(*it, verbose!=0);
}
else if( printelscint )
{
Expand Down

0 comments on commit 9b7a87f

Please sign in to comment.