cargo fmt

This commit is contained in:
Greg Shuflin 2023-07-23 03:14:49 -07:00
parent c280dbe716
commit 78fb4ecbfc
2 changed files with 3 additions and 4 deletions

View File

@ -40,4 +40,3 @@ pub(crate) fn parse_arguments() -> Result<Args, lexopt::Error> {
Ok(args)
}

View File

@ -1,9 +1,9 @@
mod args;
use libc::{c_void, c_int};
use libc::{c_int, c_void};
extern {
fn nmseffect_set_autodecrypt(_: c_int) -> c_void;
extern "C" {
fn nmseffect_set_autodecrypt(_: c_int) -> c_void;
}
#[no_mangle]