]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/utilsunx.cpp
no real change: put event handlers together at the end of the file
[wxWidgets.git] / src / unix / utilsunx.cpp
index a5c3221bb25295c7e90dea10affe12487026a184..d7036f000b5dcd08d0d94031cf7ee786bfb2dd25 100644 (file)
@@ -202,7 +202,7 @@ void wxMicroSleep(unsigned long microseconds)
     tmReq.tv_nsec = (microseconds % 1000000) * 1000;
 
     // we're not interested in remaining time nor in return value
-    (void)nanosleep(&tmReq, (timespec *)NULL);
+    (void)nanosleep(&tmReq, NULL);
 #elif defined(HAVE_USLEEP)
     // uncomment this if you feel brave or if you are sure that your version
     // of Solaris has a safe usleep() function but please notice that usleep()