From 316722d7c99dd77f2c812d2bd0ab0f8499460b19 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 2 Jan 2025 12:14:13 +0100 Subject: [PATCH] gstptpclock: Fix GST_STIME_ARGS usage It requires a signed value Part-of: --- subprojects/gstreamer/libs/gst/net/gstptpclock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gstreamer/libs/gst/net/gstptpclock.c b/subprojects/gstreamer/libs/gst/net/gstptpclock.c index 8e026ae358..f2b1f1b61b 100644 --- a/subprojects/gstreamer/libs/gst/net/gstptpclock.c +++ b/subprojects/gstreamer/libs/gst/net/gstptpclock.c @@ -2052,7 +2052,7 @@ handle_send_time_ack (const guint8 * data, gsize size, " from helper process", GST_STIME_ARGS ((GstClockTimeDiff) (helper_send_time - sync->delay_req_send_time_local)), - GST_STIME_ARGS (receive_time - helper_send_time)); + GST_STIME_ARGS ((GstClockTimeDiff) (receive_time - helper_send_time))); sync->delay_req_send_time_local = helper_send_time; } }