Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
f81778e9
Commit
f81778e9
authored
Oct 31, 2006
by
Rémi Denis-Courmont
Browse files
fix Windows build
parent
bb24808c
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/file.c
View file @
f81778e9
...
...
@@ -108,7 +108,7 @@ static int Seek( access_t *, int64_t );
static
int
Read
(
access_t
*
,
uint8_t
*
,
int
);
static
int
Control
(
access_t
*
,
int
,
va_list
);
static
int
O
pen
F
ile
(
access_t
*
,
const
char
*
);
static
int
o
pen
_f
ile
(
access_t
*
,
const
char
*
);
struct
access_sys_t
{
...
...
@@ -213,7 +213,7 @@ static int Open( vlc_object_t *p_this )
if
(
b_stdin
)
fd
=
dup
(
0
);
else
fd
=
O
pen
F
ile
(
p_access
,
p_access
->
psz_path
);
fd
=
o
pen
_f
ile
(
p_access
,
p_access
->
psz_path
);
}
else
{
...
...
@@ -224,7 +224,7 @@ static int Open( vlc_object_t *p_this )
*
ptr
=
0
;
msg_Dbg
(
p_access
,
"opening additionnal file `%s'"
,
filename
);
fd
=
O
pen
F
ile
(
p_access
,
filename
);
fd
=
o
pen
_f
ile
(
p_access
,
filename
);
filename
=
ptr
+
1
;
}
...
...
@@ -513,9 +513,9 @@ static char *expand_path (const access_t *p_access, const char *path)
/*****************************************************************************
*
O
pen
F
ile: Opens a specific file
*
o
pen
_f
ile: Opens a specific file
*****************************************************************************/
static
int
O
pen
F
ile
(
access_t
*
p_access
,
const
char
*
psz_name
)
static
int
o
pen
_f
ile
(
access_t
*
p_access
,
const
char
*
psz_name
)
{
char
*
path
=
expand_path
(
p_access
,
psz_name
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment