Run rustfmt (Rust 1.31.1)

This commit is contained in:
Oliver Hamlet
2018-12-22 22:50:16 +00:00
parent 5e1ba5709b
commit 9ef82fe886
6 changed files with 128 additions and 106 deletions
+10 -5
View File
@@ -61,7 +61,8 @@ pub unsafe extern "C" fn lci_state_create(
LCI_OK
}
}).unwrap_or(LCI_ERROR_PANICKED)
})
.unwrap_or(LCI_ERROR_PANICKED)
}
#[no_mangle]
@@ -105,7 +106,8 @@ pub unsafe extern "C" fn lci_state_set_active_plugins(
LCI_OK
}
}).unwrap_or(LCI_ERROR_PANICKED)
})
.unwrap_or(LCI_ERROR_PANICKED)
}
#[no_mangle]
@@ -142,7 +144,8 @@ pub unsafe extern "C" fn lci_state_set_plugin_versions(
LCI_OK
}
}).unwrap_or(LCI_ERROR_PANICKED)
})
.unwrap_or(LCI_ERROR_PANICKED)
}
#[no_mangle]
@@ -178,7 +181,8 @@ pub unsafe extern "C" fn lci_state_set_crc_cache(
},
}
}
}).unwrap_or(LCI_ERROR_PANICKED)
})
.unwrap_or(LCI_ERROR_PANICKED)
}
#[no_mangle]
@@ -195,5 +199,6 @@ pub unsafe extern "C" fn lci_state_clear_condition_cache(state: *mut lci_state)
},
}
}
}).unwrap_or(LCI_ERROR_PANICKED)
})
.unwrap_or(LCI_ERROR_PANICKED)
}