aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/acidtypes/sym.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-11-29 05:12:33 +0000
committerrsc <devnull@localhost>2005-11-29 05:12:33 +0000
commite3de25fea4065d017fc344c3c7d757738a922c17 (patch)
tree20a735762ace754f995c138273e3d1eae72f66ad /src/cmd/acidtypes/sym.c
parent6c7ed6b0e6086e32710a0d42e034bce6bdaad7b0 (diff)
downloadplan9port-e3de25fea4065d017fc344c3c7d757738a922c17.tar.gz
plan9port-e3de25fea4065d017fc344c3c7d757738a922c17.tar.bz2
plan9port-e3de25fea4065d017fc344c3c7d757738a922c17.zip
better handling of C++ names.
Diffstat (limited to 'src/cmd/acidtypes/sym.c')
-rw-r--r--src/cmd/acidtypes/sym.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/acidtypes/sym.c b/src/cmd/acidtypes/sym.c
index 3c9bd49e..9aaaa487 100644
--- a/src/cmd/acidtypes/sym.c
+++ b/src/cmd/acidtypes/sym.c
@@ -41,7 +41,7 @@ dumpsyms(Biobuf *b)
}
if(t == nil || t->ty != Aggr)
continue;
- Bprint(b, "complex %s %s%s%s;\n", cleanstl(nameof(t, 1)),
+ Bprint(b, "complex %B %B%s%B;\n", nameof(t, 1),
s->fn ? fixname(s->fn) : "", s->fn ? ":" : "", fixname(s->name));
}