fix struct packing – Microsoft® C warned about 2x2 bytes of padding here

This commit is contained in:
tg 2007-07-01 15:39:22 +00:00
parent cf29aa83c5
commit 7815b5f86e
1 changed files with 2 additions and 2 deletions

4
eval.c
View File

@ -2,7 +2,7 @@
#include "sh.h"
__RCSID("$MirOS: src/bin/mksh/eval.c,v 1.29 2007/06/27 23:12:58 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/eval.c,v 1.30 2007/07/01 15:39:22 tg Exp $");
#ifdef MKSH_SMALL
#define MKSH_NOPWNAM
@ -139,8 +139,8 @@ typedef struct SubType {
short stype; /* [=+-?%#] action after expanded word */
short base; /* begin position of expanded word */
short f; /* saved value of f (DOPAT, etc) */
struct tbl *var; /* variable for ${var..} */
short quote; /* saved value of quote (for ${..[%#]..}) */
struct tbl *var; /* variable for ${var..} */
struct SubType *prev; /* old type */
struct SubType *next; /* poped type (to avoid re-allocating) */
} SubType;