mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-06 11:50:54 +01:00
chore: fix clippy lint
This commit is contained in:
parent
a38da43670
commit
333eb3bdd9
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ use clap::Args;
|
||||||
use fs_err::tokio as fs;
|
use fs_err::tokio as fs;
|
||||||
use pesde::Project;
|
use pesde::Project;
|
||||||
use std::{collections::HashSet, path::Path};
|
use std::{collections::HashSet, path::Path};
|
||||||
use tokio::task::{spawn_blocking, JoinSet};
|
use tokio::task::JoinSet;
|
||||||
|
|
||||||
#[derive(Debug, Args)]
|
#[derive(Debug, Args)]
|
||||||
pub struct PruneCommand {}
|
pub struct PruneCommand {}
|
||||||
|
@ -32,7 +32,7 @@ async fn get_nlinks(path: &Path) -> anyhow::Result<u64> {
|
||||||
};
|
};
|
||||||
|
|
||||||
let path = path.to_path_buf();
|
let path = path.to_path_buf();
|
||||||
return spawn_blocking(move || unsafe {
|
return tokio::task::spawn_blocking(move || unsafe {
|
||||||
let handle = CreateFileW(
|
let handle = CreateFileW(
|
||||||
PWSTR(
|
PWSTR(
|
||||||
path.as_os_str()
|
path.as_os_str()
|
||||||
|
|
Loading…
Add table
Reference in a new issue