aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-core
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shiskov@gmail.com>2020-07-10 21:43:02 +0200
committerKostya Shishkov <kostya.shiskov@gmail.com>2020-07-10 21:43:02 +0200
commit237cc1f9576ed23c7a2f9bb34b43e5d07e93f710 (patch)
treea19095f6feac0c54aff0ffa68089c8523d14bf52 /nihav-core
parent36294f20b37c13c8b4c468a08e803baedac7e938 (diff)
downloadnihav-237cc1f9576ed23c7a2f9bb34b43e5d07e93f710.tar.gz
remove trailing whitespace
Diffstat (limited to 'nihav-core')
-rw-r--r--nihav-core/src/formats.rs4
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)
},