lwm2m: fix no previous prototype for function

packet-lwm2mtlv.c:476:6: warning: no previous prototype for ‘lwm2m_allocate_fields’ [-Wmissing-prototypes]
packet-lwm2mtlv.c:518:25: warning: no previous prototype for ‘lwm2m_search_float_resources’ [-Wmissing-prototypes]
packet-lwm2mtlv.c:535:25: warning: no previous prototype for ‘lwm2m_search_fields’ [-Wmissing-prototypes]
packet-lwm2mtlv.c:558:6: warning: no previous prototype for ‘lwm2m_free_fields’ [-Wmissing-prototypes]

Change-Id: Ib62ed48b68c6eb28e1372466ceef6a2a118ebe1c
Reviewed-on: https://code.wireshark.org/review/36897
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2020-04-20 18:51:50 +00:00 committed by Anders Broman
parent 6736b8f281
commit 0c3729a688
1 changed files with 4 additions and 4 deletions

View File

@ -473,7 +473,7 @@ static void lwm2m_add_resource(lwm2m_resource_t *resource, hf_register_info *hf,
HFILL_INIT(*hf);
}
void lwm2m_allocate_fields(lwm2m_allocated_fields_t *fields, lwm2m_resource_t *lwm2m_resources, guint num_lwm2m_resources)
static void lwm2m_allocate_fields(lwm2m_allocated_fields_t *fields, lwm2m_resource_t *lwm2m_resources, guint num_lwm2m_resources)
{
guint resource_index;
@ -515,7 +515,7 @@ void lwm2m_allocate_fields(lwm2m_allocated_fields_t *fields, lwm2m_resource_t *l
}
}
const lwm2m_resource_t *lwm2m_search_float_resources(guint object_id, guint resource_id,
static const lwm2m_resource_t *lwm2m_search_float_resources(guint object_id, guint resource_id,
const lwm2m_allocated_fields_t *fields)
{
const lwm2m_resource_t *resource = NULL;
@ -532,7 +532,7 @@ const lwm2m_resource_t *lwm2m_search_float_resources(guint object_id, guint reso
return resource;
}
const lwm2m_resource_t *lwm2m_search_fields(guint object_id, guint resource_id, guint length_of_value,
static const lwm2m_resource_t *lwm2m_search_fields(guint object_id, guint resource_id, guint length_of_value,
const lwm2m_allocated_fields_t *fields,
const lwm2m_resource_t *lwm2m_resources, guint num_lwm2m_resources)
{
@ -555,7 +555,7 @@ const lwm2m_resource_t *lwm2m_search_fields(guint object_id, guint resource_id,
return resource;
}
void lwm2m_free_fields(lwm2m_allocated_fields_t *fields)
static void lwm2m_free_fields(lwm2m_allocated_fields_t *fields)
{
if (fields->hf) {
/* Deregister all fields */