Use Q_UNUSED instead of _U_

Change-Id: I19732f097b1238159b634e32ee13fe6ae3f1883d
Reviewed-on: https://code.wireshark.org/review/1849
Reviewed-by: Michael Tüxen <tuexen@wireshark.org>
This commit is contained in:
ruengeler 2014-05-28 19:14:37 +02:00 committed by Michael Tüxen
parent 74774fd8e3
commit a192e4792d
1 changed files with 2 additions and 1 deletions

View File

@ -143,7 +143,8 @@ static uat_field_t io_graph_fields[] = {
UAT_END_FIELDS
};
static void* io_graph_copy_cb(void* dst_ptr, const void* src_ptr, size_t len _U_) {
static void* io_graph_copy_cb(void* dst_ptr, const void* src_ptr, size_t len) {
Q_UNUSED(len);
io_graph_settings_t* dst = (io_graph_settings_t *)dst_ptr;
const io_graph_settings_t* src = (const io_graph_settings_t *)src_ptr;