Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
76d75d3d
Commit
76d75d3d
authored
Jul 29, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* improved some error messages
parent
6cb1101a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
AUTHORS
AUTHORS
+1
-0
src/input/input.c
src/input/input.c
+7
-3
src/misc/update.c
src/misc/update.c
+4
-4
No files found.
AUTHORS
View file @
76d75d3d
...
...
@@ -258,6 +258,7 @@ N: Felix Kühne
E: fkuehne@users.sourceforge.net
C: fkuehne
D: MacOS X Interface (Wizard, structure, extended controls panel, bookmarks window)
D: Interface Interaction (core and OSX)
D: German translation
S: Germany
...
...
src/input/input.c
View file @
76d75d3d
...
...
@@ -2019,7 +2019,9 @@ static int InputSourceInit( input_thread_t *p_input,
{
msg_Err
(
p_input
,
"no suitable access module for `%s'"
,
psz_mrl
);
intf_UserFatal
(
VLC_OBJECT
(
p_input
),
_
(
"Errors"
),
"Unable to open '%s'"
,
psz_mrl
);
_
(
"Your input can't be opened"
),
_
(
"VLC is unable to open the MRL '%s'."
" Check the log for details."
),
psz_mrl
);
goto
error
;
}
...
...
@@ -2089,8 +2091,10 @@ 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
),
_
(
"Errors"
),
"Unrecognized format for '%s'"
,
psz_mrl
);
intf_UserFatal
(
VLC_OBJECT
(
p_input
),
_
(
"Can't recognize the input's format"
),
_
(
"The format of '%s' can't be detected. "
"Have a look the log for details."
),
psz_mrl
);
goto
error
;
}
...
...
src/misc/update.c
View file @
76d75d3d
...
...
@@ -1270,8 +1270,8 @@ 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
,
"Downloading..."
,
"
Failed to open %s for reading
"
,
psz_src
);
intf_UserFatal
(
p_vlc
,
"
Error while
Downloading..."
,
"
VLC failed to open %s for reading.
"
,
psz_src
);
intf_UserHide
(
p_vlc
,
i_progress
);
}
else
...
...
@@ -1281,8 +1281,8 @@ 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
,
"Downloading..."
,
"
Failed to open %s for writing
"
,
psz_dest
);
intf_UserFatal
(
p_vlc
,
"
Error while
Downloading..."
,
"
VLC failed to open %s for writing.
"
,
psz_dest
);
intf_UserHide
(
p_vlc
,
i_progress
);
}
else
...
...
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