Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <amorales@fluendo.com>2023-07-14 15:18:56 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-10-04 19:08:37 +0300
commitfcd16bc070dd2460212e1b74931a53bbb173cc6c (patch)
treeda6f2b7d208252b3efa7291d468c7a207a764f16 /generic/threadshare/src
parente792fdbe48149432683a7d6822b2dbe8d047d557 (diff)
threadshare: fix warning for unused variable
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1350>
Diffstat (limited to 'generic/threadshare/src')
-rw-r--r--generic/threadshare/src/socket.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/threadshare/src/socket.rs b/generic/threadshare/src/socket.rs
index 088dd5c14..f52039fbd 100644
--- a/generic/threadshare/src/socket.rs
+++ b/generic/threadshare/src/socket.rs
@@ -240,7 +240,7 @@ impl GioSocketWrapper {
}
#[cfg(not(unix))]
- pub fn set_tos(&self, qos_dscp: i32) -> Result<(), glib::Error> {
+ pub fn set_tos(&self, _qos_dscp: i32) -> Result<(), glib::Error> {
Ok(())
}