]> git.sesse.net Git - vlc/commitdiff
Fix typo
authorRémi Denis-Courmont <rem@videolan.org>
Tue, 21 Nov 2006 17:04:07 +0000 (17:04 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Tue, 21 Nov 2006 17:04:07 +0000 (17:04 +0000)
src/misc/mtime.c

index a925e45256d940a6a6fc0d1c8532f2a422831515..4e085e27fef37ccb326f401a6f4615a4b68df5a4 100644 (file)
@@ -329,7 +329,7 @@ void msleep( mtime_t delay )
     lldiv_t d = lldiv( delay, 1000000 );
     struct timespec ts = { d.quot, d.rem * 1000 };
 
-# if (_POSIX_CLOCK_MONOTONIC - 0 >= 0)
+# if (_POSIX_MONOTONIC_CLOCK - 0 >= 0)
     if( clock_nanosleep( CLOCK_MONOTONIC, 0, &ts, NULL ) )
 # endif
         clock_nanosleep( CLOCK_REALTIME, 0, &ts, NULL );