From 46bbefd80c3c0781f4eed2942c3e6898df96c28f Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 16 May 2022 13:50:40 +0200 Subject: [PATCH] Syphon: fixed comparsion sign warning --- src/video_capture/syphon.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_capture/syphon.mm b/src/video_capture/syphon.mm index 9b36bee4c..7975a7aa3 100644 --- a/src/video_capture/syphon.mm +++ b/src/video_capture/syphon.mm @@ -139,7 +139,7 @@ struct state_vidcap_syphon { mutex lock; condition_variable frame_ready_cv; queue q; - int max_queue_size = DEFAULT_MAX_QUEUE_SIZE; + size_t max_queue_size = DEFAULT_MAX_QUEUE_SIZE; GLuint fbo_id; GLuint tex_id;