mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
netclientclock: fix printf format in debug message
This commit is contained in:
parent
fb78756679
commit
df2312fd6a
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ gst_net_client_clock_thread (gpointer data)
|
|||
socket_timeout = (expiration_time - now) / GST_USECOND;
|
||||
}
|
||||
|
||||
GST_TRACE_OBJECT (self, "time out in %d microsecs please", socket_timeout);
|
||||
GST_TRACE_OBJECT (self, "timeout: %" G_GINT64_FORMAT "us", socket_timeout);
|
||||
|
||||
if (!g_socket_condition_timed_wait (socket, G_IO_IN, socket_timeout,
|
||||
self->priv->cancel, &err)) {
|
||||
|
|
Loading…
Reference in a new issue