trivial changes
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
parent
2aaca0c54a
commit
3e8c5d3b79
2 changed files with 4 additions and 4 deletions
|
|
@ -139,7 +139,7 @@ impl MagInterface {
|
|||
return Err(Error::new(
|
||||
ErrorKind::Other,
|
||||
format!(
|
||||
"Failed to LoadLibraryExA {}, error: {}",
|
||||
"Failed to LoadLibraryExA {}, error {}",
|
||||
lib_file_name,
|
||||
Error::last_os_error()
|
||||
),
|
||||
|
|
@ -173,7 +173,7 @@ impl MagInterface {
|
|||
if FALSE == init_func() {
|
||||
return Err(Error::new(
|
||||
ErrorKind::Other,
|
||||
format!("Failed to MagInitialize, error: {}", Error::last_os_error()),
|
||||
format!("Failed to MagInitialize, error {}", Error::last_os_error()),
|
||||
));
|
||||
} else {
|
||||
s.init_succeeded = true;
|
||||
|
|
@ -346,7 +346,7 @@ impl CapturerMag {
|
|||
return Err(Error::new(
|
||||
ErrorKind::Other,
|
||||
format!(
|
||||
"Failed to RegisterClassExA, error {:?}",
|
||||
"Failed to RegisterClassExA, error {}",
|
||||
Error::from_raw_os_error(code as _)
|
||||
),
|
||||
));
|
||||
|
|
|
|||
|
|
@ -1700,7 +1700,7 @@ pub fn create_process_with_logon(user: &str, pwd: &str, exe: &str, arg: &str) ->
|
|||
{
|
||||
let last_error = GetLastError();
|
||||
bail!(
|
||||
"CreateProcessWithLogonW failed : \"{}\", error {:?}",
|
||||
"CreateProcessWithLogonW failed : \"{}\", error {}",
|
||||
last_error_table
|
||||
.get(&last_error)
|
||||
.unwrap_or(&"Unknown error"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue