Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
7365e409
Commit
7365e409
authored
Jul 30, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* forgot these in the previous commit (updated to current API)
parent
0a9dbda9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/input/input.c
src/input/input.c
+2
-2
src/misc/update.c
src/misc/update.c
+2
-2
No files found.
src/input/input.c
View file @
7365e409
...
...
@@ -2018,7 +2018,7 @@ static int InputSourceInit( input_thread_t *p_input,
if
(
in
->
p_access
==
NULL
)
{
msg_Err
(
p_input
,
"no suitable access module for `%s'"
,
psz_mrl
);
intf_UserFatal
(
VLC_OBJECT
(
p_input
),
intf_UserFatal
(
VLC_OBJECT
(
p_input
),
VLC_FALSE
,
_
(
"Your input can't be opened"
),
_
(
"VLC is unable to open the MRL '%s'."
" Check the log for details."
),
psz_mrl
);
...
...
@@ -2091,7 +2091,7 @@ static int InputSourceInit( input_thread_t *p_input,
{
msg_Err
(
p_input
,
"no suitable demux module for `%s/%s://%s'"
,
psz_access
,
psz_demux
,
psz_path
);
intf_UserFatal
(
VLC_OBJECT
(
p_input
),
intf_UserFatal
(
VLC_OBJECT
(
p_input
),
VLC_FALSE
,
_
(
"Can't recognize the input's format"
),
_
(
"The format of '%s' can't be detected. "
"Have a look the log for details."
),
psz_mrl
);
...
...
src/misc/update.c
View file @
7365e409
...
...
@@ -1270,7 +1270,7 @@ void update_download_for_real( download_thread_t *p_this )
if
(
!
p_stream
)
{
msg_Err
(
p_vlc
,
"Failed to open %s for reading"
,
psz_src
);
intf_UserFatal
(
p_vlc
,
"Error while Downloading..."
,
intf_UserFatal
(
p_vlc
,
VLC_TRUE
,
"Error while Downloading..."
,
"VLC failed to open %s for reading."
,
psz_src
);
intf_UserHide
(
p_vlc
,
i_progress
);
}
...
...
@@ -1281,7 +1281,7 @@ void update_download_for_real( download_thread_t *p_this )
if
(
!
p_file
)
{
msg_Err
(
p_vlc
,
"Failed to open %s for writing"
,
psz_dest
);
intf_UserFatal
(
p_vlc
,
"Error while Downloading..."
,
intf_UserFatal
(
p_vlc
,
VLC_TRUE
,
"Error while Downloading..."
,
"VLC failed to open %s for writing."
,
psz_dest
);
intf_UserHide
(
p_vlc
,
i_progress
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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