fixed whitespace issues

This commit is contained in:
Emma Tebibyte 2024-04-24 20:37:44 -06:00
parent 79189561c6
commit bf7a53994e
Signed by: emma
GPG Key ID: 06FA419A1698C270
1 changed files with 6 additions and 6 deletions

View File

@ -65,15 +65,15 @@ fn main() -> Result<(), Error> {
/* Make sysexits bindings depend only on core and use signed integers for
* compatibility with Rusts exit() implementation */
let bindings = Builder::default()
let bindings = Builder::default()
.use_core()
.default_macro_constant_type(MacroTypeVariation::Signed)
.header(header)
.parse_callbacks(Box::new(CargoCallbacks::new()))
.generate()
.map_err(|e| Error::other(e.to_string()))?;
.header(header)
.parse_callbacks(Box::new(CargoCallbacks::new()))
.generate()
.map_err(|e| Error::other(e.to_string()))?;
bindings.write_to_file(PathBuf::from("src/").join("lib.rs"))?;
bindings.write_to_file(PathBuf::from("src/").join("lib.rs"))?;
Ok(())
}