From 56b64489f7888da9d4da4ada31092b491148ba8d Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Thu, 11 Jun 1992 12:42:35 +0000 Subject: [PATCH] alignment_mask -> long. --- v7/src/microcode/obstack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v7/src/microcode/obstack.h b/v7/src/microcode/obstack.h index 28ee4881c..e8eeefa1e 100644 --- a/v7/src/microcode/obstack.h +++ b/v7/src/microcode/obstack.h @@ -132,7 +132,7 @@ struct obstack /* control current object in current chunk */ char *next_free; /* where to add next char to current object */ char *chunk_limit; /* address of char after current chunk */ long temp; /* Temporary for some macros. */ - int alignment_mask; /* Mask of alignment for each object. */ + long alignment_mask; /* Mask of alignment for each object. */ /* User's fcn to allocate a chunk. */ struct _obstack_chunk * EXFUN ((*chunkfun), (long)); /* User's function to free a chunk. */ -- 2.25.1