diff --git a/fastgmad-lib/src/workshop/mod.rs b/fastgmad-lib/src/workshop/mod.rs index d623a48..3a37290 100644 --- a/fastgmad-lib/src/workshop/mod.rs +++ b/fastgmad-lib/src/workshop/mod.rs @@ -389,7 +389,7 @@ impl ContentPath { let temp_gma_path = dir.join("fastgmad.gma"); - let symlink_result: Result<(), FastGmadError> = { + let symlink_result: Result<(), std::io::Error> = { #[cfg(windows)] { let res = std::os::windows::fs::symlink_file(gma_path, &temp_gma_path); @@ -414,7 +414,7 @@ impl ContentPath { #[cfg(not(windows))] { - Err(fastgmad_io_error!(error: std::io::Error::from(std::io::ErrorKind::Unsupported))) + Err(std::io::Error::from(std::io::ErrorKind::Unsupported)) } };