Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
e0ec41406477eba9a8f6d70cd72c29c4efa5cad3...d2eda12d2c30356cc14461d549e20ea5aebe50a9
Commits (1)
Fix Win32 builds maybe?
· d2eda12d
Deucе
authored
Feb 12, 2022
d2eda12d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/xpdev/genwrap.c
src/xpdev/genwrap.c
+1
-2
No files found.
src/xpdev/genwrap.c
View file @
d2eda12d
...
...
@@ -844,7 +844,6 @@ uint64_t xp_timer64(void)
#elif defined(_WIN32)
LARGE_INTEGER
freq
;
LARGE_INTEGER
tick
;
if
(
if
(
QueryPerformanceFrequency
(
&
freq
)
&&
QueryPerformanceCounter
(
&
tick
))
{
static
BOOL
intable
=
(
freq
%
1000
)
==
0
;
if
(
intable
)
...
...