Minor cleanup

pull/2/head
Mark 2023-07-28 10:04:56 -07:00
parent a76af3c69a
commit 7fb0e0274c
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
1 changed files with 1 additions and 2 deletions

View File

@ -5,8 +5,7 @@ cfg_if::cfg_if! {
pub use unix::main as main_e;
} else {
pub fn main_e () -> Result<(), std::io::Error> {
println!("Not yet implemented.");
Ok(())
unimplemented!("Not yet implemented.");
}
}
}