From 7da9c0ad06c722ec139021e9ef0a77ae6ae654de Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Tue, 7 Apr 1998 18:32:35 -0700
Subject: [PATCH] bugfix

Rev: src/program.c:1.72
---
 src/program.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/program.c b/src/program.c
index cdd8a0c623..1404abcd44 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.71 1998/04/08 01:00:58 hubbe Exp $");
+RCSID("$Id: program.c,v 1.72 1998/04/08 01:32:35 hubbe Exp $");
 #include "program.h"
 #include "object.h"
 #include "dynamic_buffer.h"
@@ -665,7 +665,7 @@ static int alignof_variable(int run_time_type)
 #ifdef HAVE_ALIGNOF
       return ALIGNOF(struct svalue);
 #else
-      return ALIGNOF(union u);
+      return ALIGNOF(union anything);
 #endif
     case T_INT: return ALIGNOF(INT_TYPE);
     case T_FLOAT: return ALIGNOF(FLOAT_TYPE);
-- 
GitLab