Remove the editor modeline blocks from the source files in ui that use 4 space indentation by running perl -i -p0e 's{ \n+ /[ *\n]+ editor \s+ modelines .* shiftwidth= .* \*/ \s+ } {\n}gsix' $( ag -l shiftwidth=4 $( ag -g '\.(c|cpp|h|m|mm)') ) This gives us one source of indentation truth for these files, and it *shouldn't* affect anyone since - These files match the default in our top-level .editorconfig. - The one notable editor that's likely to be used on these files and *doesn't* support EditorConfig (Qt Creator) defaults to 4 space indentation.
23 lines
697 B
C
23 lines
697 B
C
/* service_response_time.c
|
|
* Copied from ui/gtk/service_response_time_table.h, 2003 Ronnie Sahlberg
|
|
* Helper routines and structs common to all service response time statistics
|
|
* taps.
|
|
*
|
|
* Wireshark - Network traffic analyzer
|
|
* By Gerald Combs <gerald@wireshark.org>
|
|
* Copyright 1998 Gerald Combs
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "service_response_time.h"
|
|
|
|
extern const char*
|
|
service_response_time_get_column_name (int idx)
|
|
{
|
|
static const char *default_titles[] = { "Index", "Procedure", "Calls", "Min SRT (s)", "Max SRT (s)", "Avg SRT (s)", "Sum SRT (s)" };
|
|
|
|
if (idx < 0 || idx >= NUM_SRT_COLUMNS) return "(Unknown)";
|
|
return default_titles[idx];
|
|
}
|