From 7c1d25d6c20a8e6fbe1b3db33830023e1d64dfdf Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Mon, 8 Apr 2002 07:51:10 +0000 Subject: [PATCH] Fix style of ether_ntoa(). --- lib/libc/net/ether_addr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libc/net/ether_addr.c b/lib/libc/net/ether_addr.c index 9f3f6c4f8ca..e8bc8ba39dd 100644 --- a/lib/libc/net/ether_addr.c +++ b/lib/libc/net/ether_addr.c @@ -118,9 +118,9 @@ char int i; static char a[18]; - i = sprintf(a,"%02x:%02x:%02x:%02x:%02x:%02x", - n->octet[0],n->octet[1],n->octet[2], - n->octet[3],n->octet[4],n->octet[5]); + i = sprintf(a, "%02x:%02x:%02x:%02x:%02x:%02x", + n->octet[0], n->octet[1], n->octet[2], + n->octet[3], n->octet[4], n->octet[5]); if (i < 17) return (NULL); return ((char *)&a);