diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-16 18:21:02 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-16 18:21:02 +0100 |
commit | 55a94110287ad2b1a55953febac48422a9d3ba89 (patch) | |
tree | ca57ff2df49383e3f34a31df8c7c7e3d06470ba1 /crates/libmpv2/src/mpv/render.rs | |
parent | refactor(yt/): Use the new `termsize` and `uu_fmt` crates (diff) | |
download | yt-55a94110287ad2b1a55953febac48422a9d3ba89.zip |
style(treewide): Re-format
Diffstat (limited to 'crates/libmpv2/src/mpv/render.rs')
-rw-r--r-- | crates/libmpv2/src/mpv/render.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/libmpv2/src/mpv/render.rs b/crates/libmpv2/src/mpv/render.rs index c3f2dc9..6457048 100644 --- a/crates/libmpv2/src/mpv/render.rs +++ b/crates/libmpv2/src/mpv/render.rs @@ -8,9 +8,9 @@ // You should have received a copy of the License along with this program. // If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. -use crate::{mpv::mpv_err, Error, Result}; +use crate::{Error, Result, mpv::mpv_err}; use std::collections::HashMap; -use std::ffi::{c_void, CStr}; +use std::ffi::{CStr, c_void}; use std::os::raw::c_int; use std::ptr; |