]> git.sesse.net Git - vlc/commitdiff
Fix spelling.
authorAntoine Cellerier <dionoea@videolan.org>
Sat, 20 Feb 2010 21:24:23 +0000 (22:24 +0100)
committerAntoine Cellerier <dionoea@videolan.org>
Sat, 20 Feb 2010 21:24:23 +0000 (22:24 +0100)
bin/vlc.c

index 8949fd5f6005e8383623bcec6f66be9110db9b02..f9c9eff7a3f535bc9366cbbccb4ebd62b170405a 100644 (file)
--- a/bin/vlc.c
+++ b/bin/vlc.c
@@ -92,7 +92,7 @@ int main( int i_argc, const char *ppsz_argv[] )
     /* Synchronously intercepted POSIX signals.
      *
      * In a threaded program such as VLC, the only sane way to handle signals
-     * is to block them in all thread but one - this is the only way to
+     * is to block them in all threads but one - this is the only way to
      * predict which thread will receive them. If any piece of code depends
      * on delivery of one of this signal it is intrinsically not thread-safe
      * and MUST NOT be used in VLC, whether we like it or not.