file: fix 10l error in access() check

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/8/head
Michael Niedermayer 12 years ago
parent 51d6879939
commit 257196209f
  1. 2
      libavformat/file.c

@ -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);

Loading…
Cancel
Save