Commit 18da36de authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

file: fix typo

parent 18a676c9
...@@ -192,7 +192,7 @@ int FileOpen( vlc_object_t *p_this ) ...@@ -192,7 +192,7 @@ int FileOpen( vlc_object_t *p_this )
#if O_NONBLOCK #if O_NONBLOCK
/* Force blocking mode back */ /* Force blocking mode back */
fcntl (fd, fcntl (fd, F_GETFL) & ~O_NONBLOCK); fcntl (fd, F_SETFL, fcntl (fd, F_GETFL) & ~O_NONBLOCK);
#endif #endif
/* Directories can be opened and read from, but only readdir() knows /* Directories can be opened and read from, but only readdir() knows
......
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