nic_dump: Disambiguate "Interface" in component.cc.

Clang 12 complains that Interface can both refer to Genode::Interface
and Net::Interface in this case. Explicitly state the code refers to
the latter.

Issue #3984
This commit is contained in:
Piotr Tworek 2021-01-11 00:09:17 +01:00 committed by Norman Feske
parent 30429a5228
commit 428de89f9a

View File

@ -83,7 +83,7 @@ Net::Session_component::Session_component(Ram_quota const ram_quota,
_rx.sigh_ack_avail(_source_ack);
_rx.sigh_ready_to_submit(_source_submit);
Interface::remote(_uplink);
_uplink.Interface::remote(*this);
_uplink.Net::Interface::remote(*this);
_uplink.link_state_sigh(_link_state_handler);
_print_state();
}