All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] meson: add missing semicolon in pthread_condattr_setclock test
@ 2026-03-30 13:14 Stepan Popov
  2026-03-30 13:32 ` Marc-André Lureau
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Stepan Popov @ 2026-03-30 13:14 UTC (permalink / raw)
  To: qemu-devel
  Cc: Paolo Bonzini, Marc-André Lureau, Daniel P . Berrangé,
	Philippe Mathieu-Daudé, Stepan Popov

The test code was missing a semicolon after the pthread_condattr_t
variable declaration.

Signed-off-by: Stepan Popov <Stepan.Popov@kaspersky.com>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index d7c4095b39..5447504ea8 100644
--- a/meson.build
+++ b/meson.build
@@ -2882,7 +2882,7 @@ config_host_data.set('CONFIG_PTHREAD_CONDATTR_SETCLOCK', cc.links(osdep_prefix +
 
   int main(void)
   {
-    pthread_condattr_t attr
+    pthread_condattr_t attr;
     pthread_condattr_init(&attr);
     pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
     return 0;
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2026-03-30 14:26 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-30 13:14 [PATCH] meson: add missing semicolon in pthread_condattr_setclock test Stepan Popov
2026-03-30 13:32 ` Marc-André Lureau
2026-03-30 13:36   ` Daniel P. Berrangé
2026-03-30 14:19     ` Peter Maydell
2026-03-30 14:24       ` Daniel P. Berrangé
2026-03-30 14:25       ` Paolo Bonzini
2026-03-30 13:51 ` Alex Bennée
2026-03-30 14:18 ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.