aboutsummaryrefslogtreecommitdiff
path: root/src/liblink/list9.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/liblink/list9.c')
-rw-r--r--src/liblink/list9.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liblink/list9.c b/src/liblink/list9.c
index 0a158cd61e..32fcf8f87b 100644
--- a/src/liblink/list9.c
+++ b/src/liblink/list9.c
@@ -102,7 +102,7 @@ Pconv(Fmt *fp)
if(p->from3.type != D_NONE)
s += sprint(s, " from3={%#D}", &p->from3);
if(p->to.type != D_NONE)
- s += sprint(s, " to={%#D}", &p->to);
+ sprint(s, " to={%#D}", &p->to);
return fmtstrcpy(fp, str);
}
@@ -182,7 +182,7 @@ Dconv(Fmt *fp)
s += sprint(s, "name=%s ", dnames9[(int)a->name]);
else
s += sprint(s, "name=%d ", a->name);
- s += sprint(s, "offset=%ld etype=%E width=%d", a->offset, a->etype, a->width);
+ s += sprint(s, "offset=%lld etype=%E width=%lld", a->offset, a->etype, a->width);
if(a->class != 0)
s += sprint(s, " class=%s", cnames9[(int)a->class]);
if(a->reg != NREG)
@@ -190,7 +190,7 @@ Dconv(Fmt *fp)
if(a->sym != nil)
s += sprint(s, " sym=%s", a->sym->name);
if(a->type == D_BRANCH && a->u.branch != nil)
- s += sprint(s, " branch=%.5lld", a->u.branch->pc);
+ sprint(s, " branch=%.5lld", a->u.branch->pc);
goto ret;
}