summaryrefslogtreecommitdiff
path: root/utils/5l/list.c
diff options
context:
space:
mode:
authorforsyth <forsyth@lavoro.terzarima.net>2013-06-03 21:01:14 +0000
committerforsyth <forsyth@lavoro.terzarima.net>2013-06-03 21:01:14 +0000
commit45a20ab721a513710138340faff3d59a31c3e01e (patch)
treeeea29d2684c51cc73725b8992a2125bede48e118 /utils/5l/list.c
parentcd8e99851af33e52bcdf8faf34f9d4e62fa0cbaf (diff)
sync compilers with Plan 9
remove 1[acl] 2[acl]
Diffstat (limited to 'utils/5l/list.c')
-rw-r--r--utils/5l/list.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/utils/5l/list.c b/utils/5l/list.c
index 5d2e7b49..173f3031 100644
--- a/utils/5l/list.c
+++ b/utils/5l/list.c
@@ -56,14 +56,6 @@ Pconv(Fmt *fp)
sprint(str, "(%ld) %A%C %D/%d,%D",
p->line, a, p->scond, &p->from, p->reg, &p->to);
break;
-
- case AWORD:
- sprint(str, "WORD %ld", p->to.offset);
- break;
-
- case ADWORD:
- sprint(str, "DWORD %ld %ld", p->from.offset, p->to.offset);
- break;
}
return fmtstrcpy(fp, str);
}
@@ -75,7 +67,7 @@ Aconv(Fmt *fp)
int a;
a = va_arg(fp->args, int);
- s = "???";
+ s = "?";
if(a >= AXXX && a < ALAST)
s = anames[a];
return fmtstrcpy(fp, s);