diff options
Diffstat (limited to 'addrtoname.c')
-rw-r--r-- | addrtoname.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/addrtoname.c b/addrtoname.c index 88af3c82..fe6338d5 100644 --- a/addrtoname.c +++ b/addrtoname.c @@ -352,8 +352,10 @@ getname6(netdissect_options *ndo, const u_char *ap) return (p->name); } -static const char hex[16] = "0123456789abcdef"; - +static const char hex[16] = { + '0', '1', '2', '3', '4', '5', '6', '7', + '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' +}; /* Find the hash node that corresponds the ether address 'ep' */ |