]> git.saurik.com Git - cycript.git/commitdiff
Stupid mistake while outputting statement blocks: last statement was getting center...
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 12 Jul 2010 00:05:31 +0000 (00:05 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 12 Jul 2010 00:05:31 +0000 (00:05 +0000)
Output.cpp

index f983ce2d9dbaae09f7381f20c1337aac1607398e..d5d403c30118dba1cd765ff7d1661d8c89e387cc 100644 (file)
@@ -609,7 +609,7 @@ void CYStatement::Multiple(CYOutput &out, CYFlags flags) const {
     bool first(true);
     for (const CYStatement *next(this); next != NULL; next = next->next_) {
         bool last(next->next_ == NULL);
-        CYFlags jacks(first ? last ? flags : CYLeft(flags) : last ? CYCenter(flags) : CYRight(flags));
+        CYFlags jacks(first ? last ? flags : CYLeft(flags) : last ? CYRight(flags) : CYCenter(flags));
         first = false;
         out << '\t';
         next->Output(out, jacks);