From f5f010568a886f526bc27e573d8ac525028bc165 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 18 Aug 2020 14:26:03 -0700 Subject: logcat: fix indentation. Change-Id: Ia23acfdaf78af20760f18169c57ae770b399e0d2 Reviewed-on: https://code.wireshark.org/review/38193 Reviewed-by: Guy Harris --- epan/dissectors/packet-logcat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'epan/dissectors/packet-logcat.c') diff --git a/epan/dissectors/packet-logcat.c b/epan/dissectors/packet-logcat.c index 3444d3733f..aec4421ce3 100644 --- a/epan/dissectors/packet-logcat.c +++ b/epan/dissectors/packet-logcat.c @@ -157,10 +157,10 @@ dissect_logcat(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _ /* New line characters convert to spaces to ensure column Info display one line */ if (pref_one_line_info_column) { - while ((c = g_utf8_strchr(log, string_length, '\n'))) - *c = ' '; - while ((c = g_utf8_strchr(log, string_length, '\r'))) - *c = ' '; + while ((c = g_utf8_strchr(log, string_length, '\n'))) + *c = ' '; + while ((c = g_utf8_strchr(log, string_length, '\r'))) + *c = ' '; } subitem = proto_tree_add_item(maintree, hf_logcat_log, tvb, offset, string_length, ENC_UTF_8 | ENC_NA); -- cgit v1.2.3