Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
3f35c3e3
Commit
3f35c3e3
authored
Apr 05, 2007
by
Rémi Denis-Courmont
Browse files
Revert [19092] and really fix the variable naming problem - closes #1082
parent
620490ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/misc/mtime.c
View file @
3f35c3e3
...
...
@@ -160,7 +160,6 @@ mtime_t mdate( void )
#elif defined( WIN32 ) || defined( UNDER_CE )
/* We don't need the real date, just the value of a high precision timer */
static
mtime_t
freq
=
I64C
(
-
1
);
mtime_t
usec_time
;
if
(
freq
==
I64C
(
-
1
)
)
{
...
...
@@ -226,9 +225,9 @@ mtime_t mdate( void )
{
/* Counter wrapped */
i_wrap_counts
++
;
usec_time
+=
I64C
(
0x100000000
)
*
1000
;
res
+=
I64C
(
0x100000000
)
*
1000
;
}
i_previous_time
=
usec_time
;
i_previous_time
=
res
;
LeaveCriticalSection
(
&
date_lock
);
}
#else
...
...
Write
Preview
Markdown
is supported
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