diff options
author | Kostya Shishkov <kostya.shiskov@gmail.com> | 2020-07-10 21:43:02 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shiskov@gmail.com> | 2020-07-10 21:43:02 +0200 |
commit | 237cc1f9576ed23c7a2f9bb34b43e5d07e93f710 (patch) | |
tree | a19095f6feac0c54aff0ffa68089c8523d14bf52 /nihav-core | |
parent | 36294f20b37c13c8b4c468a08e803baedac7e938 (diff) | |
download | nihav-237cc1f9576ed23c7a2f9bb34b43e5d07e93f710.tar.gz |
remove trailing whitespace
Diffstat (limited to 'nihav-core')
-rw-r--r-- | nihav-core/src/formats.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nihav-core/src/formats.rs b/nihav-core/src/formats.rs index f96eb53..bb47838 100644 --- a/nihav-core/src/formats.rs +++ b/nihav-core/src/formats.rs @@ -769,7 +769,7 @@ impl NAPixelFormaton { break; } } - name += if self.be { "be" } else { "le" }; + name += if self.be { "be" } else { "le" }; return Some(name); } if depth == 24 || depth != 8 * self.components { @@ -779,7 +779,7 @@ impl NAPixelFormaton { name.push('p'); } if self.get_max_depth() > 8 { - name += if self.be { "be" } else { "le" }; + name += if self.be { "be" } else { "le" }; } Some(name) }, |