Define a function as 'static' (Fixes [-Wmissing-prototypes] warning).

Change-Id: Ia0a5c05c953053691837c5795c8204e2144d8067
Reviewed-on: https://code.wireshark.org/review/1241
Reviewed-by: Bill Meier <wmeier@newsguy.com>
This commit is contained in:
Bill Meier 2014-04-21 13:07:38 -04:00
parent bcfa1cc974
commit 72527a49b1
1 changed files with 2 additions and 1 deletions

View File

@ -525,7 +525,8 @@ handle_message_header_expected_byte(tvbuff_t *tvb,
#define ARG_STRUCT '(' /* AllJoyn struct container type */
#define ARG_DICT_ENTRY '{' /* AllJoyn dictionary or map container type - an array of key-value pairs */
gint pad_according_to_type(gint offset, gint max_offset, guint8 type)
static gint
pad_according_to_type(gint offset, gint max_offset, guint8 type)
{
switch(type)
{