From 207b3df9e7709923f74ccf5bcd212df317a9289d Mon Sep 17 00:00:00 2001 From: natureh 510 Date: Sat, 2 Nov 2013 18:07:59 +0100 Subject: [PATCH] Fixed a too agressive celanup of patch from issue 466. Now printAll is working fine again. --- rtexif/rtexif.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/rtexif/rtexif.cc b/rtexif/rtexif.cc index aae93ec2e..fc55e34d9 100644 --- a/rtexif/rtexif.cc +++ b/rtexif/rtexif.cc @@ -167,6 +167,7 @@ void TagDirectory::printAll (unsigned int level) const { std::string name = tags[i]->nameToString (); if (tags[i]->isDirectory()) for (int j=0; tags[i]->getDirectory(j); j++) { + printf ("%s+-- DIRECTORY %s[%d]:\n", prefixStr, name.c_str(), j); tags[i]->getDirectory(j)->printAll (level+1); } else