diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-06-14 13:44:08 +0200 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-06-14 13:44:08 +0200 |
| commit | f24f23faa240053b7ac8f65b69ff8d1ae0ad3ea1 (patch) | |
| tree | b3c6406951d9e09836336290b63ceaa9d7efc04b /mumlib | |
| parent | f4beab72096060f513d6b22c0ee891688595dcbd (diff) | |
| download | mum-f24f23faa240053b7ac8f65b69ff8d1ae0ad3ea1.tar.gz | |
clippy
Diffstat (limited to 'mumlib')
| -rw-r--r-- | mumlib/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mumlib/src/config.rs b/mumlib/src/config.rs index 3edef37..9b74bfe 100644 --- a/mumlib/src/config.rs +++ b/mumlib/src/config.rs @@ -155,7 +155,7 @@ pub fn read_cfg(path: &Path) -> Result<Config, ConfigError> { } else { error!("Error reading config file: {}", e); } - return Ok(Config::default()); + Ok(Config::default()) } } } |
