[vlc-commits] Fix grammar / typo
Rémi Denis-Courmont
git at videolan.org
Fri Jan 10 18:13:37 CET 2014
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Jan 10 19:13:24 2014 +0200| [779fd3dd597bff3be5636e5e822f38b1fc468bb6] | committer: Rémi Denis-Courmont
Fix grammar / typo
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=779fd3dd597bff3be5636e5e822f38b1fc468bb6
---
src/posix/filesystem.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/posix/filesystem.c b/src/posix/filesystem.c
index b4ba03a..b008a6c 100644
--- a/src/posix/filesystem.c
+++ b/src/posix/filesystem.c
@@ -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);
More information about the vlc-commits
mailing list