Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nick Mathewson
Tor
Commits
3a280b35
Commit
3a280b35
authored
Aug 08, 2019
by
Nick Mathewson
🐻
Browse files
Fix a warning about casting the results of GetProcAddress.
Fixes bug 31374; bugfix on 0.2.9.1-alpha.
parent
8d22c09a
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/ticket31374
0 → 100644
View file @
3a280b35
o Minor bugfixes (compilation warning):
- Fix a compilation warning on Windows about casting a function
pointer for GetTickCount64(). Fixes bug 31374; bugfix on
0.2.9.1-alpha.
src/common/compat_time.c
View file @
3a280b35
...
...
@@ -443,7 +443,7 @@ monotime_init_internal(void)
HANDLE
h
=
load_windows_system_library
(
TEXT
(
"kernel32.dll"
));
if
(
h
)
{
GetTickCount64_fn
=
(
GetTickCount64_fn_t
)
GetTickCount64_fn
=
(
GetTickCount64_fn_t
)
(
void
(
*
)(
void
))
GetProcAddress
(
h
,
"GetTickCount64"
);
}
// FreeLibrary(h) ?
...
...
@@ -654,4 +654,3 @@ monotime_coarse_absolute_msec(void)
return
monotime_coarse_absolute_nsec
()
/
ONE_MILLION
;
}
#endif
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment