diff options
author | Ethan Sommer <e5ten.arch@gmail.com> | 2020-05-28 21:52:23 -0400 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-28 21:55:39 -0500 |
commit | a17730d630da124b27be7af5fb9496d602645c32 (patch) | |
tree | 4c2c771c4578b376b6f99da60b2a04f08ca4ea4b /toys/net | |
parent | e0f2912739ec7aa23b1cfde0a69bf9c37c5964f6 (diff) | |
download | toybox-a17730d630da124b27be7af5fb9496d602645c32.tar.gz |
remove unneeded ; after GLOBALS
Diffstat (limited to 'toys/net')
-rw-r--r-- | toys/net/netstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/net/netstat.c b/toys/net/netstat.c index 16907e21..65a1105e 100644 --- a/toys/net/netstat.c +++ b/toys/net/netstat.c @@ -34,7 +34,7 @@ config NETSTAT GLOBALS( struct num_cache *inodes; int wpad; -); +) // convert address into text format. static void addr2str(int af, void *addr, unsigned port, char *buf, int len, |