diff options
| author | jakka <jakkadoujin@gmail.com> | 2025-06-04 20:01:07 +0300 |
|---|---|---|
| committer | jakka <jakkadoujin@gmail.com> | 2025-06-04 20:01:07 +0300 |
| commit | 3b55294f1fc09a957ca63c3a9a718b1082b9a894 (patch) | |
| tree | e9923ca12127130cc69953a8b03e6d7f04236e9e /src/main.rs | |
| parent | 5a39e523da7f4fe2c9c1e6c369a366162be122fa (diff) | |
implemented flac reencoding. started working on md5sum implementation
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 6c4cb43..ba95650 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,7 @@ mod flac; fn main() { - flac::encode_file(std::path::Path::new("./1.flac")).unwrap(); + if let Err(error) = flac::encode_file(std::path::Path::new("./1.flac")) { + println!("{}", error) + }; } |
