Hopefully fixed library names generated by wx-config for OS/2's PM port.
[wxWidgets.git] / src / common / stopwatch.cpp
index 236dc5aa67b766cc46426e54cf4a06c23d4194d3..7575e5ba957bf76b92d03684111fc223fe48d517 100644 (file)
@@ -286,7 +286,7 @@ wxLongLong wxGetLocalTimeMillis()
 
     // ftime() is void and not int in some mingw32 headers, so don't
     // test the return code (well, it shouldn't fail anyhow...)
-    (void)ftime(&tp);
+    (void)::ftime(&tp);
     val *= tp.time;
     return (val + tp.millitm);
 #elif defined(__WXMAC__)