Commit 6ab10612 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

typo

parent eab5925f
...@@ -206,7 +206,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -206,7 +206,7 @@ static int Open( vlc_object_t *p_this )
void *addr = mmap (NULL, 1, PROT_READ, MAP_PRIVATE, fd, 0); void *addr = mmap (NULL, 1, PROT_READ, MAP_PRIVATE, fd, 0);
if (addr != MAP_FAILED) if (addr != MAP_FAILED)
{ {
/* Does the file system needs to support mmap? */ /* Does the file system support mmap? */
munmap (addr, 1); munmap (addr, 1);
p_access->pf_read = NULL; p_access->pf_read = NULL;
p_access->pf_block = mmapBlock; p_access->pf_block = mmapBlock;
......
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