From b5e71e73b6eb6c8b78ffaf30123e75d3fc968d23 Mon Sep 17 00:00:00 2001 From: hujianwei Date: Fri, 4 Nov 2022 07:38:59 +0000 Subject: [PATCH] ; * tests/test_harness.c (struct image_data_header): Add missing pad. --- tests/test_harness.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_harness.c b/tests/test_harness.c index ad55f9d..7910bfb 100644 --- a/tests/test_harness.c +++ b/tests/test_harness.c @@ -46,6 +46,9 @@ struct image_data_header /* The width and height. */ unsigned short width, height; + /* Padding. */ + unsigned short pad1; + /* The stride. */ unsigned int stride; };