summaryrefslogtreecommitdiff
path: root/test/regression/packedstruct2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/regression/packedstruct2.c')
-rw-r--r--test/regression/packedstruct2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regression/packedstruct2.c b/test/regression/packedstruct2.c
index 37c736e..d742655 100644
--- a/test/regression/packedstruct2.c
+++ b/test/regression/packedstruct2.c
@@ -4,7 +4,7 @@
/* Simple packing */
-struct __packed__ s1 { unsigned short x; int y; char z; };
+struct __packed__(1) s1 { unsigned short x; int y; char z; };
struct s1 s1 = { 2345, -12345678, 'x' };