Fix uninlined_format_args

cargo clippy --all --all-targets --fix -- -Wclippy::uninlined_format_args
This commit is contained in:
gwenn
2023-12-23 14:21:23 +01:00
parent 6663dac933
commit 3c3d7daeb4
3 changed files with 3 additions and 6 deletions

View File

@@ -350,10 +350,7 @@ impl From<HeaderLocation> for String {
HeaderLocation::FromEnvironment => {
let prefix = env_prefix();
let mut header = env::var(format!("{prefix}_INCLUDE_DIR")).unwrap_or_else(|_| {
panic!(
"{}_INCLUDE_DIR must be set if {}_LIB_DIR is set",
prefix, prefix
)
panic!("{prefix}_INCLUDE_DIR must be set if {prefix}_LIB_DIR is set")
});
header.push_str(if cfg!(feature = "loadable_extension") {
"/sqlite3ext.h"