diff options
Diffstat (limited to 'src/net/ethernet.c')
-rw-r--r-- | src/net/ethernet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/ethernet.c b/src/net/ethernet.c index 4cdf571c6..690b22182 100644 --- a/src/net/ethernet.c +++ b/src/net/ethernet.c @@ -93,7 +93,7 @@ static int eth_rx ( struct pk_buff *pkb, struct net_device *netdev ) { * @v ll_addr Link-layer address * @ret string Link-layer address in human-readable format */ -static const char * eth_ntoa ( const void *ll_addr ) { +const char * eth_ntoa ( const void *ll_addr ) { static char buf[18]; /* "00:00:00:00:00:00" */ const uint8_t *eth_addr = ll_addr; |