From a8b6284ed146fd73688867d413d24a31b714bf6b Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Sat, 11 Mar 2017 16:44:20 +0100 Subject: =?UTF-8?q?tfshark:=20fix=20this=20=E2=80=98if=E2=80=99=20clause?= =?UTF-8?q?=20does=20not=20guard...=20[-Wmisleading-indentation]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: If66223021d074e6cb3c7bde2af7cca9c72acb8c6 Reviewed-on: https://code.wireshark.org/review/20507 Reviewed-by: Michael Mann --- tfshark.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'tfshark.c') diff --git a/tfshark.c b/tfshark.c index ae1e6e495d..d7c7eac286 100644 --- a/tfshark.c +++ b/tfshark.c @@ -1493,15 +1493,15 @@ load_cap_file(capture_file *cf, int max_packet_count, gint64 max_byte_count) raw_data, tap_flags)) return 2; - /* Stop reading if we have the maximum number of packets; - * When the -c option has not been used, max_packet_count - * starts at 0, which practically means, never stop reading. - * (unless we roll over max_packet_count ?) - */ - if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) { - err = 0; /* This is not an error */ - break; - } + /* Stop reading if we have the maximum number of packets; + * When the -c option has not been used, max_packet_count + * starts at 0, which practically means, never stop reading. + * (unless we roll over max_packet_count ?) + */ + if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) { + err = 0; /* This is not an error */ + break; + } } if (edt) { -- cgit v1.2.1