Commit 4d5f866d authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

msvcp110: Make argument const for _Xtime_diff functions.

parent 121b859f
......@@ -398,7 +398,7 @@ int __cdecl xtime_get(xtime* t, int unknown)
}
/* _Xtime_diff_to_millis2 */
MSVCRT_long __cdecl _Xtime_diff_to_millis2(xtime *t1, xtime *t2)
MSVCRT_long __cdecl _Xtime_diff_to_millis2(const xtime *t1, const xtime *t2)
{
__time64_t diff_sec;
MSVCRT_long diff_nsec, ret;
......@@ -413,7 +413,7 @@ MSVCRT_long __cdecl _Xtime_diff_to_millis2(xtime *t1, xtime *t2)
}
/* _Xtime_diff_to_millis */
MSVCRT_long __cdecl _Xtime_diff_to_millis(xtime *t)
MSVCRT_long __cdecl _Xtime_diff_to_millis(const xtime *t)
{
xtime now;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment