From 55001620baa23bd676b2b4e458635d3e2d87e1b2 Mon Sep 17 00:00:00 2001 From: Demid Rudak Date: Fri, 21 Jul 2023 19:04:28 +0300 Subject: [PATCH] Fixed spandsp/unaligned.h PACK() --- src/spandsp/unaligned.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/spandsp/unaligned.h b/src/spandsp/unaligned.h index 189b870f..e6bc7376 100644 --- a/src/spandsp/unaligned.h +++ b/src/spandsp/unaligned.h @@ -41,9 +41,9 @@ extern "C" #define PACK( __Declaration__ ) __pragma( pack(push, 1) ) __Declaration__ __pragma( pack(pop)) #endif -PACK(struct __dealign_uint16 { uint16_t datum; };) -PACK(struct __dealign_uint32 { uint32_t datum; };) -PACK(struct __dealign_uint64 { uint64_t datum; };) +PACK(struct __dealign_uint16 { uint16_t datum; }); +PACK(struct __dealign_uint32 { uint32_t datum; }); +PACK(struct __dealign_uint64 { uint64_t datum; }); #if defined(__GNUC__)