Skip to content

Commit

Permalink
Adapt to Rust 1.85
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Feb 22, 2025
1 parent 373270d commit 08fa0ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ fn main() {
};
let endpoint = common_settings.endpoint();

match build_http_client(&cli, &common_settings) {
let httpc_result = build_http_client(&cli, &common_settings);
match httpc_result {
Ok(httpc) => {
// SharedSettings considers not just one but multiple ways to obtain
// the value if it wasn't passed on the command line, so these are
Expand Down

0 comments on commit 08fa0ed

Please sign in to comment.