]> git.sesse.net Git - vlc/commitdiff
Fix grammar / typo
authorRémi Denis-Courmont <remi@remlab.net>
Fri, 10 Jan 2014 17:13:24 +0000 (19:13 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Fri, 10 Jan 2014 17:13:24 +0000 (19:13 +0200)
src/posix/filesystem.c

index b4ba03a39ffbd7c10fb465d82d0872971ade7cfa..b008a6c607b45d9d88ead64b6dd58cfb47a0cc48 100644 (file)
@@ -157,7 +157,7 @@ char *vlc_readdir( DIR *dir )
     char *path = NULL;
 
     long len = fpathconf (dirfd (dir), _PC_NAME_MAX);
-    /* POSIX says there shall we room for NAME_MAX bytes at all times */
+    /* POSIX says there shall be room for NAME_MAX bytes at all times */
     if (len == -1 || len < NAME_MAX)
         len = NAME_MAX;
     len += sizeof (*ent) + 1 - sizeof (ent->d_name);