aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/nm/nm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/nm/nm.c')
-rw-r--r--src/cmd/nm/nm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/nm/nm.c b/src/cmd/nm/nm.c
index 66748eef7c..57e6636a32 100644
--- a/src/cmd/nm/nm.c
+++ b/src/cmd/nm/nm.c
@@ -326,8 +326,8 @@ printsyms(Sym **symptr, long nsym)
else
Bprint(&bout, "%*s ", wid, "");
Bprint(&bout, "%c %s", s->type, cp);
- if(tflag && s->gotype && s->gotype[0])
- Bprint(&bout, " %s", s->gotype);
+ if(tflag && s->gotype)
+ Bprint(&bout, " %*llux", wid, s->gotype);
Bprint(&bout, "\n");
}
}