From 5545152121ea3762753ba31c615e7b88eb519d70 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Tue, 28 Apr 2015 21:35:45 +0200 Subject: [PATCH] Address.h : fix api reference warning The following parameters of WMEM_COPY_ADDRESS(scope, to, from) are not documented: parameter 'scope' Change-Id: Ice1bddb55839f7aa839bdf6dec74211cf7e4d9dc Reviewed-on: https://code.wireshark.org/review/8227 Reviewed-by: Anders Broman --- epan/address.h | 1 + 1 file changed, 1 insertion(+) diff --git a/epan/address.h b/epan/address.h index 07d14360f1..6e6faa3694 100644 --- a/epan/address.h +++ b/epan/address.h @@ -180,6 +180,7 @@ copy_address_shallow(address *to, const address *from) { /** Copy an address, allocating a new buffer for the address data * using wmem-scoped memory. * + * @param scope [in] The lifetime of the allocated memory, wmem_packet_scope() * @param to [in,out] The destination address. * @param from [in] The source address. */