Fix compile errors when compiling w/o zlib

Change-Id: I443cd0d4a143e456e11b5939891312a0501770a0
Reviewed-on: https://code.wireshark.org/review/14636
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Petri-Dish: Jaap Keuter <jaap.keuter@xs4all.nl>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Daniël van Eeden 2016-03-26 13:03:39 +01:00 committed by Michael Mann
parent 320090ce23
commit a0b1354583
5 changed files with 5 additions and 5 deletions

View File

@ -1384,7 +1384,7 @@ get_capinfos_compiled_info(GString *str)
}
static void
get_capinfos_runtime_info(GString *str)
get_capinfos_runtime_info(GString *str _U_)
{
/* zlib */
#if defined(HAVE_LIBZ) && !defined(_WIN32)

View File

@ -104,7 +104,7 @@ get_captype_compiled_info(GString *str)
}
static void
get_captype_runtime_info(GString *str)
get_captype_runtime_info(GString *str _U_)
{
/* zlib */
#if defined(HAVE_LIBZ) && !defined(_WIN32)

View File

@ -926,7 +926,7 @@ get_editcap_compiled_info(GString *str)
}
static void
get_editcap_runtime_info(GString *str)
get_editcap_runtime_info(GString *str _U_)
{
/* zlib */
#if defined(HAVE_LIBZ) && !defined(_WIN32)

View File

@ -195,7 +195,7 @@ get_mergecap_compiled_info(GString *str)
}
static void
get_mergecap_runtime_info(GString *str)
get_mergecap_runtime_info(GString *str _U_)
{
/* zlib */
#if defined(HAVE_LIBZ) && !defined(_WIN32)

View File

@ -169,7 +169,7 @@ get_reordercap_compiled_info(GString *str)
}
static void
get_reordercap_runtime_info(GString *str)
get_reordercap_runtime_info(GString *str _U_)
{
/* zlib */
#if defined(HAVE_LIBZ) && !defined(_WIN32)