]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix some dubious indentation
authorNick Mathewson <nickm@torproject.org>
Mon, 2 Jan 2017 17:13:11 +0000 (12:13 -0500)
committerNick Mathewson <nickm@torproject.org>
Mon, 2 Jan 2017 17:13:11 +0000 (12:13 -0500)
src/or/channel.c

index 2951a1d6651a8e24890dc6b292bde4cc606139be..49ae4cf8841379cf2c96a47c19e7e22e6bbfda58 100644 (file)
@@ -2430,9 +2430,10 @@ channel_flush_some_cells_from_outgoing_queue(channel_t *chan,
           /* Finally, free q */
           cell_queue_entry_free(q, handed_off);
           q = NULL;
+        } else {
+          /* No cell removed from list, so we can't go on any further */
+          break;
         }
-        /* No cell removed from list, so we can't go on any further */
-        else break;
       }
     }
   }