aboutsummaryrefslogtreecommitdiffstats
path: root/tfshark.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-08-05 16:10:44 -0400
committerBill Meier <wmeier@newsguy.com>2014-08-05 20:42:21 +0000
commitf3dd7fe1eb5348922b079db2bdede700d4d28fbd (patch)
tree7382b5da9a3c1de3eba0e91aed54c087fcfea549 /tfshark.c
parentdfe331e35e0400942d3ad9e4b5f8c84369546b6d (diff)
Fix whitespace/indentation to match editor modelines.
Change-Id: I3445ae22f10584582d465bf632942e016f5f70ca Reviewed-on: https://code.wireshark.org/review/3452 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'tfshark.c')
-rw-r--r--tfshark.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/tfshark.c b/tfshark.c
index 8a266b5c9a..4670d74af6 100644
--- a/tfshark.c
+++ b/tfshark.c
@@ -51,7 +51,7 @@
#endif
#ifdef HAVE_LIBZ
-#include <zlib.h> /* to get the libz version number */
+#include <zlib.h> /* to get the libz version number */
#endif
#ifndef HAVE_GETOPT
@@ -751,29 +751,29 @@ show_version(GString *comp_info_str, GString *runtime_info_str)
static void
get_tfshark_compiled_version_info(GString *str)
{
- /* LIBZ */
+ /* LIBZ */
#ifdef HAVE_LIBZ
- g_string_append(str, "with libz ");
+ g_string_append(str, "with libz ");
#ifdef ZLIB_VERSION
- g_string_append(str, ZLIB_VERSION);
+ g_string_append(str, ZLIB_VERSION);
#else /* ZLIB_VERSION */
- g_string_append(str, "(version unknown)");
+ g_string_append(str, "(version unknown)");
#endif /* ZLIB_VERSION */
#else /* HAVE_LIBZ */
- g_string_append(str, "without libz");
+ g_string_append(str, "without libz");
#endif /* HAVE_LIBZ */
}
static void
get_tfshark_runtime_version_info(GString *str)
{
- /* zlib */
+ /* zlib */
#if defined(HAVE_LIBZ) && !defined(_WIN32)
- g_string_append_printf(str, ", with libz %s", zlibVersion());
+ g_string_append_printf(str, ", with libz %s", zlibVersion());
#endif
- /* stuff used by libwireshark */
- epan_get_runtime_version_info(str);
+ /* stuff used by libwireshark */
+ epan_get_runtime_version_info(str);
}
int