From ebf3aeee64e23ce61c7e16563b4c25a401266504 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Fri, 28 Sep 2012 19:14:21 -0700 Subject: [PATCH] Remove infinite loop. --- src/SerializedLedger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SerializedLedger.cpp b/src/SerializedLedger.cpp index 824f77145b..db21fe47dd 100644 --- a/src/SerializedLedger.cpp +++ b/src/SerializedLedger.cpp @@ -46,7 +46,7 @@ std::string SerializedLedgerEntry::getFullText() const ret += "\" = { "; ret += mFormat->t_name; ret += ", "; - ret += getFullText(); + ret += STObject::getFullText(); ret += "}"; return ret; }