From 367ce4626c98d0262c10af05336e1b75d00143d5 Mon Sep 17 00:00:00 2001 From: Ripley Tom Date: Sat, 21 Feb 2026 20:55:17 +0100 Subject: [PATCH] src/modules/module-rtp-source.c: Fix alignment requirement for 32 bit build --- src/modules/module-rtp-source.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-rtp-source.c b/src/modules/module-rtp-source.c index 8f911c62a..2110385b8 100644 --- a/src/modules/module-rtp-source.c +++ b/src/modules/module-rtp-source.c @@ -231,7 +231,7 @@ struct impl { /* Monotonic timestamp of the last time a packet was * received. This is accessed with atomic accessors * to avoid race conditions. */ - uint64_t last_packet_time; + SPA_ALIGNED(8) uint64_t last_packet_time; struct pw_timer standby_timer; /* This timer is used when the first stream_start() call fails because