aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-08-22 02:29:32 +0000
committerEvan Huus <eapache@gmail.com>2013-08-22 02:29:32 +0000
commit7e59f1fce686c3b790b281dd8964659526d7321c (patch)
treeafc638def20b4c3e1a6edc4c6272b1ddff054949 /tshark.c
parent216155047003a86076bdbb35640a72f7a9fd2502 (diff)
Move a brace outside an #ifdef, it was confusing vim's folding.
svn path=/trunk/; revision=51461
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tshark.c b/tshark.c
index 78a0e84c42..0343bec0b4 100644
--- a/tshark.c
+++ b/tshark.c
@@ -2334,10 +2334,11 @@ capture(void)
g_array_insert_val(global_capture_opts.ifaces, i, interface_opts);
}
#ifdef _WIN32
- if (global_capture_opts.ifaces->len < 2) {
+ if (global_capture_opts.ifaces->len < 2)
#else
- if (global_capture_opts.ifaces->len < 4) {
+ if (global_capture_opts.ifaces->len < 4)
#endif
+ {
for (i = 0; i < global_capture_opts.ifaces->len; i++) {
interface_options interface_opts;