diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-01-02 12:13:11 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-01-02 12:13:11 -0500 |
commit | 26651d7fdb4f1a2b891d6e16fd72b8183ec75ff0 (patch) | |
tree | 05f8b1728df1eb4ed73c02bbfeb368696f7d0ee5 /src/or/channel.c | |
parent | 991aeeccb1caee84a74de1fa5a10cfe781d91d59 (diff) | |
download | tor-26651d7fdb4f1a2b891d6e16fd72b8183ec75ff0.tar.gz tor-26651d7fdb4f1a2b891d6e16fd72b8183ec75ff0.zip |
Fix some dubious indentation
Diffstat (limited to 'src/or/channel.c')
-rw-r--r-- | src/or/channel.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/channel.c b/src/or/channel.c index 2951a1d665..49ae4cf884 100644 --- a/src/or/channel.c +++ b/src/or/channel.c @@ -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; } } } |