diff options
author | Robert Mustacchi <rm@fingolfin.org> | 2020-01-10 21:01:09 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@fingolfin.org> | 2020-02-13 05:12:47 +0000 |
commit | 6d9e11ccb59a5d4ea2127e1791163333c4337a08 (patch) | |
tree | 666894b26243cc4d4887945d0972406fc2107f0b /usr/src/cmd/ctfconvert/ctfconvert.c | |
parent | b40354493afafb9870e25372645af933e189b24f (diff) | |
download | illumos-gate-6d9e11ccb59a5d4ea2127e1791163333c4337a08.tar.gz |
12224 ctfconvert conv backend error missing newline
Reviewed by: John Levon <john.levon@joyent.com>
Reviewed by: Jason King <jason.king@joyent.com>
Approved by: Dan McDonald <danmcd@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 2633207693..0e37d070f1 100644 --- a/usr/src/cmd/ctfconvert/ctfconvert.c +++ b/usr/src/cmd/ctfconvert/ctfconvert.c @@ -334,7 +334,7 @@ main(int argc, char *argv[]) (void) unlink(infile); if (err == ECTF_CONVBKERR || err == ECTF_CONVNODEBUG) { - ctfconvert_fatal("%s", buf); + ctfconvert_fatal("%s\n", buf); } else { ctfconvert_fatal("CTF conversion failed: %s\n", ctf_errmsg(err)); |