file: fix 10l error in access() check

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-11-27 13:12:49 +01:00
parent 51d6879939
commit 257196209f
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ static int file_get_handle(URLContext *h)
static int file_check(URLContext *h, int mask)
{
#if defined(HAVE_ACCESS) && defined(R_OK)
#if HAVE_ACCESS && defined(R_OK)
int ret = 0;
if (access(h->filename, F_OK) < 0)
return AVERROR(errno);