From 0de727779071746ff433ad30514af54f1a71f3d4 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 16 Nov 1992 13:52:07 +0000 Subject: [PATCH] Fix 1.69 was partly wrong --- lang/m2/comp/type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/m2/comp/type.c b/lang/m2/comp/type.c index 50313983f..06bba2fa7 100644 --- a/lang/m2/comp/type.c +++ b/lang/m2/comp/type.c @@ -125,7 +125,7 @@ align(pos, al) int i = pos % al; if (i) return pos + (al - i); - return pos == 0 ? 1 : pos; + return pos; } t_type * -- 2.34.1