]> git.saurik.com Git - cycript.git/blobdiff - Output.cpp
Use OS X (not Simulator) build for x86_64 on OS X.
[cycript.git] / Output.cpp
index 602251460b6f80e7e5b63ed0a4c5237818a86145..3794c498856b3bda78ea26562f9934d6c2aaf386 100644 (file)
@@ -118,8 +118,7 @@ void CYArgument::Output(CYOutput &out) const {
     if (value_ != NULL)
         value_->Output(out, CYAssign::Precedence_, CYNoFlags);
     if (next_ != NULL) {
-        if (next_->name_ == NULL)
-            out << ',';
+        out << ',';
         out << ' ' << *next_;
     }
 }