diff --git a/examples/example6.cpp b/examples/example6.cpp index c4acc1c5..e4b272a5 100644 --- a/examples/example6.cpp +++ b/examples/example6.cpp @@ -292,11 +292,11 @@ static std::ostream& operator<<(std::ostream& os, const vmime::exception& e) * @param s structure object * @param level current depth */ -static void printStructure(vmime::ref s, const int level = 0) +static void printStructure(vmime::ref s, const int level = 0) { for (int i = 0 ; i < s->getPartCount() ; ++i) { - vmime::ref part = s->getPartAt(i); + vmime::ref part = s->getPartAt(i); for (int j = 0 ; j < level * 2 ; ++j) std::cout << " ";