diff options
author | David Robillard <d@drobilla.net> | 2010-12-25 05:45:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-25 05:45:45 +0000 |
commit | c1ee499d0b14be87b5f5664448507026b9b87fd6 (patch) | |
tree | 2b64e4d595cd607c825ae732cc6f01190c52fa46 /src | |
parent | fd332f979c4216a560925639ae99f2155ab56044 (diff) | |
download | resp-c1ee499d0b14be87b5f5664448507026b9b87fd6.tar.gz resp-c1ee499d0b14be87b5f5664448507026b9b87fd6.tar.bz2 resp-c1ee499d0b14be87b5f5664448507026b9b87fd6.zip |
Print missing trailing `)'.
git-svn-id: http://svn.drobilla.net/resp/resp@347 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src')
-rw-r--r-- | src/pprint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pprint.cpp b/src/pprint.cpp index 80f854c..23ab69c 100644 --- a/src/pprint.cpp +++ b/src/pprint.cpp @@ -87,7 +87,7 @@ print_list(ostream& out, const ATuple* tup, ATuple::const_iterator i, i = next; } - return out; + return out << ")"; } ostream& |