libavutil/file_open.c: Fix duplicate words

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-08-12 19:40:29 +02:00
parent 5347de881b
commit 5086b26809

View File

@ -62,7 +62,7 @@ static int win32_open(const char *filename_utf8, int oflag, int pmode)
return fd;
fallback:
/* filename may be be in CP_ACP */
/* filename may be in CP_ACP */
return _sopen(filename_utf8, oflag, SH_DENYNO, pmode);
}
#define open win32_open