mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-28 18:16:34 +02:00
Use %lu format for DWORD
This commit is contained in:
@@ -2714,7 +2714,7 @@ g_get_monotonic_time (void)
|
|||||||
if (QueryPerformanceCounter (&ticks))
|
if (QueryPerformanceCounter (&ticks))
|
||||||
return (gint64)(ticks.QuadPart * g_monotonic_usec_per_tick);
|
return (gint64)(ticks.QuadPart * g_monotonic_usec_per_tick);
|
||||||
|
|
||||||
g_warning ("QueryPerformanceCounter Failed (%d)", GetLastError ());
|
g_warning ("QueryPerformanceCounter Failed (%lu)", GetLastError ());
|
||||||
g_monotonic_usec_per_tick = 0;
|
g_monotonic_usec_per_tick = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user