diff options
author | 2013-10-21 02:59:52 +0000 | |
---|---|---|
committer | 2013-10-21 02:59:52 +0000 | |
commit | 6d8f0b38efd862c4d0cd8c40872c23a5c310f4ec (patch) | |
tree | 5e828cf70319a1d00f6c021f8e0166859259b5de | |
parent | Make the IPv4 and IPv6 code look similar to allow easy comparison. (diff) | |
download | wireguard-openbsd-6d8f0b38efd862c4d0cd8c40872c23a5c310f4ec.tar.xz wireguard-openbsd-6d8f0b38efd862c4d0cd8c40872c23a5c310f4ec.zip |
remove a space that snuck into the output
-rw-r--r-- | usr.bin/nm/nm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/nm/nm.c b/usr.bin/nm/nm.c index 95e58d9eb6a..1fa97d88615 100644 --- a/usr.bin/nm/nm.c +++ b/usr.bin/nm/nm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nm.c,v 1.34 2013/10/19 08:59:48 deraadt Exp $ */ +/* $OpenBSD: nm.c,v 1.35 2013/10/21 02:59:52 deraadt Exp $ */ /* $NetBSD: nm.c,v 1.7 1996/01/14 23:04:03 pk Exp $ */ /* @@ -754,7 +754,7 @@ print_symbol(const char *name, struct nlist *sym) if (show_extensions) (void)printf(" %c ", typeletter(sym)); else - (void)printf(" %c ", typeletter(sym)); + (void)printf(" %c ", typeletter(sym)); } if (SYMBOL_TYPE(sym->n_type) == N_INDR && show_extensions) |