Skip to content

Commit

Permalink
windows_msvc port
Browse files Browse the repository at this point in the history
  • Loading branch information
nabijaczleweli committed Oct 30, 2024
1 parent 54099ec commit 0156d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows_msvc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl ResourceCompiler {
macros)
.arg(resource)
.status()
.map_err(|_| "Are you sure you have RC.EXE in your $PATH?".into())?
.map_err(|_| Cow::from("Are you sure you have RC.EXE in your $PATH?"))?
.success() {
return Err("RC.EXE failed to compile specified resource file".into());
}
Expand Down

0 comments on commit 0156d82

Please sign in to comment.