Commit 5086b268 authored by Michael Niedermayer's avatar Michael Niedermayer

libavutil/file_open.c: Fix duplicate words

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5347de88
...@@ -62,7 +62,7 @@ static int win32_open(const char *filename_utf8, int oflag, int pmode) ...@@ -62,7 +62,7 @@ static int win32_open(const char *filename_utf8, int oflag, int pmode)
return fd; return fd;
fallback: fallback:
/* filename may be be in CP_ACP */ /* filename may be in CP_ACP */
return _sopen(filename_utf8, oflag, SH_DENYNO, pmode); return _sopen(filename_utf8, oflag, SH_DENYNO, pmode);
} }
#define open win32_open #define open win32_open
......
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