-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed code warnings #9
Conversation
Codecov Report
@@ Coverage Diff @@
## master #9 +/- ##
==========================================
- Coverage 52.25% 52.24% -0.02%
==========================================
Files 53 53
Lines 4340 4341 +1
Branches 1020 1020
==========================================
Hits 2268 2268
- Misses 1439 1440 +1
Partials 633 633
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@@ -91,7 +91,7 @@ static HRESULT STDMETHODCALLTYPE active_script_site_on_script_error(IActiveScrip | |||
// Print exception information to log | |||
HRESULT result = IActiveScriptError_GetExceptionInfo(error, &excep_info); | |||
if (FAILED(result)) { | |||
LOG_ERROR("Failed to get active script error (0x%08x)\n", result); | |||
LOG_ERROR("Failed to get active script error (0x%08lx)\n", result); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why don't use PRI*
format specifiers?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They don't have lx
only llx
4d6c15b
to
5e5ab5b
Compare
No description provided.