From 5ff8baabfa04e9c566435074e4f6192e243d8e08 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 7 Jul 1988 14:31:29 +0000 Subject: [PATCH] fix for constants --- mach/pdp/cg/mach.c | 2 +- mach/pdp/ncg/mach.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mach/pdp/cg/mach.c b/mach/pdp/cg/mach.c index dddfdae28..ae9e51e84 100644 --- a/mach/pdp/cg/mach.c +++ b/mach/pdp/cg/mach.c @@ -40,7 +40,7 @@ con_mult(sz) word sz; { fatal("bad icon/ucon size"); l = atol(str); #ifdef ACK_ASS - fprintf(codefile,".data2 %o, %o !%s\n",(int)(l>>16),(int)l, str); + fprintf(codefile,".data2 0%o, 0%o !%s\n",(int)(l>>16),(int)l, str); #else fprintf(codefile,"\t%o;%o\n",(int)(l>>16),(int)l); #endif diff --git a/mach/pdp/ncg/mach.c b/mach/pdp/ncg/mach.c index dddfdae28..ae9e51e84 100644 --- a/mach/pdp/ncg/mach.c +++ b/mach/pdp/ncg/mach.c @@ -40,7 +40,7 @@ con_mult(sz) word sz; { fatal("bad icon/ucon size"); l = atol(str); #ifdef ACK_ASS - fprintf(codefile,".data2 %o, %o !%s\n",(int)(l>>16),(int)l, str); + fprintf(codefile,".data2 0%o, 0%o !%s\n",(int)(l>>16),(int)l, str); #else fprintf(codefile,"\t%o;%o\n",(int)(l>>16),(int)l); #endif -- 2.34.1