diff options
author | Robert Mustacchi <rm@joyent.com> | 2015-12-10 08:02:32 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2015-12-15 23:45:37 +0000 |
commit | 3ec23a4ba7b4c7b7c3af40f9357d781349b03c44 (patch) | |
tree | 1878114085a30b462ba14cbaa03860ebb70ddab6 /usr/src/cmd/ctfconvert/ctfconvert.c | |
parent | d0702bed07529b68e296ae261377ca44f1f84943 (diff) | |
download | illumos-joyent-3ec23a4ba7b4c7b7c3af40f9357d781349b03c44.tar.gz |
OS-5037 struct struct machcpu is not a type
OS-5038 ctfmerge doesn't properly uniquify forwards
Reviewed by: Patrick Mooney <patrick.mooney@joyent.com>
Reviewed by: Cody Mello <cody.mello@joyent.com>
Diffstat (limited to 'usr/src/cmd/ctfconvert/ctfconvert.c')
-rw-r--r-- | usr/src/cmd/ctfconvert/ctfconvert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/ctfconvert/ctfconvert.c b/usr/src/cmd/ctfconvert/ctfconvert.c index dd3d40c6cc..a4394c3ec8 100644 --- a/usr/src/cmd/ctfconvert/ctfconvert.c +++ b/usr/src/cmd/ctfconvert/ctfconvert.c @@ -184,7 +184,7 @@ ctfconvert_fixup_genunix(ctf_file_t *fp) */ mcpu = ctf_lookup_by_name(fp, "struct machcpu"); if (mcpu == CTF_ERR) { - mcpu = ctf_add_forward(fp, CTF_ADD_NONROOT, "struct machcpu", + mcpu = ctf_add_forward(fp, CTF_ADD_NONROOT, "machcpu", CTF_K_STRUCT); if (mcpu == CTF_ERR) { ctfconvert_fatal("failed to add 'struct machcpu' " |