From 2b0ddce2b9c3e24fb95f78afaa88e326c61c3085 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Thu, 1 Oct 2009 22:18:06 +0000 Subject: [PATCH] Fixed argument serialization comma bug. --- Output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Output.cpp b/Output.cpp index ecd39bb..647f47e 100644 --- a/Output.cpp +++ b/Output.cpp @@ -20,7 +20,7 @@ void CYArgument::Output(std::ostream &out, bool send) const { } if (next_ != NULL) { if (!send) - if (next_->name_ != NULL) + if (next_->name_ == NULL) out << ','; else out << ' '; -- 2.45.2