We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e395c4 commit 3afaa50Copy full SHA for 3afaa50
1 file changed
rust/krb5-provision-keytab/src/main.rs
@@ -172,7 +172,7 @@ impl<T: std::error::Error> From<T> for Report<T> {
172
impl<T: std::error::Error> Display for Report<T> {
173
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
174
let mut is_first = true;
175
- let mut curr: Option<&(dyn std::error::Error)> = Some(&self.error);
+ let mut curr: Option<&dyn std::error::Error> = Some(&self.error);
176
while let Some(err) = curr {
177
if !is_first {
178
f.write_str(": ")?;
0 commit comments