diff options
author | David Robillard <d@drobilla.net> | 2011-05-13 17:20:09 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-13 17:20:09 +0000 |
commit | 526810d5387bf32f2e7a0b5c3be4611eb5f633ac (patch) | |
tree | 932344d37eb065d8f92d16f49ad10a131a9c59cf /src | |
parent | b8f81f6cb445cd26c2df4bb184ff3fb09a508744 (diff) | |
download | resp-526810d5387bf32f2e7a0b5c3be4611eb5f633ac.tar.gz resp-526810d5387bf32f2e7a0b5c3be4611eb5f633ac.tar.bz2 resp-526810d5387bf32f2e7a0b5c3be4611eb5f633ac.zip |
Don't pass 'false' for pointer parameter.
git-svn-id: http://svn.drobilla.net/resp/trunk@410 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 dd42d8b..2beefca 100644 --- a/src/pprint.cpp +++ b/src/pprint.cpp @@ -226,7 +226,7 @@ print_to(ostream& out, const AST* ast, unsigned indent, CEnv* cenv, bool types) } // Print on single line if list contains only atoms - print_list_one_line(out, tup, i, indent + head_width, cenv, types, false); + print_list_one_line(out, tup, i, indent + head_width, cenv, types, NULL); } return out; |