dde_linux/src/lib/lxip/: fix warning with Cstring

This commit is contained in:
Martin Stein 2016-08-25 16:07:59 +02:00 committed by Christian Helmuth
parent 136b80b7b8
commit 79bc0ab789
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ void net_mac(void* mac, unsigned long size)
{
enum { MAC_LEN = 17, ETH_ALEN = 6, };
unsigned char str[MAC_LEN + 1];
char str[MAC_LEN + 1];
using namespace Genode;
Nic::Mac_address m = _nic_client->nic()->mac_address();