From ae045e2fbcdfd3bd61c78ab834d6a5a2f88e2b57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Mon, 6 Apr 1998 13:38:00 -0700 Subject: [PATCH] bugfix Rev: src/program.c:1.70 --- src/program.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/program.c b/src/program.c index 9ad51d007f..71fed04bb8 100644 --- a/src/program.c +++ b/src/program.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: program.c,v 1.69 1998/04/06 10:02:52 hubbe Exp $"); +RCSID("$Id: program.c,v 1.70 1998/04/06 20:38:00 hubbe Exp $"); #include "program.h" #include "object.h" #include "dynamic_buffer.h" @@ -737,9 +737,9 @@ if((char *)(p->X) < (char *)p || (char *)(p->X)> ((char *)p)+size) fatal("Progra if(IDENTIFIER_IS_VARIABLE(p->identifiers[e].identifier_flags)) { - if(p->identifiers[e].offset & (sizeof(char *)-1)) + if(p->identifiers[e].func.offset & (sizeof(char *)-1)) { - fatal("Variable offset is not properly aligned (%s).\n",p->identifers[e].name->str); + fatal("Variable offset is not properly aligned (%s).\n",p->identifiers[e].name->str); } } } -- GitLab