Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
dbb3a9c9
Commit
dbb3a9c9
authored
Feb 11, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed msg_Info abuses.
parent
7f04d5a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
modules/services_discovery/mtp.c
modules/services_discovery/mtp.c
+5
-3
No files found.
modules/services_discovery/mtp.c
View file @
dbb3a9c9
...
...
@@ -147,7 +147,7 @@ static void *Run( void *data )
i_status
==
0
)
{
/* Found a new device, add it */
msg_
Info
(
p_sd
,
"New device found"
);
msg_
Dbg
(
p_sd
,
"New device found"
);
if
(
AddDevice
(
p_sd
,
&
p_rawdevices
[
0
]
)
==
VLC_SUCCESS
)
i_status
=
1
;
}
...
...
@@ -191,7 +191,9 @@ static int AddDevice( services_discovery_t *p_sd,
p_sd
->
p_sys
->
i_product_id
=
p_raw_device
->
device_entry
.
product_id
;
if
(
(
p_track
=
LIBMTP_Get_Tracklisting_With_Callback
(
p_device
,
CountTracks
,
p_sd
)
)
==
NULL
)
msg_Info
(
p_sd
,
"No tracks on the device"
);
{
msg_Warn
(
p_sd
,
"No tracks on the device"
);
}
else
{
if
(
!
(
p_sd
->
p_sys
->
pp_items
=
calloc
(
p_sd
->
p_sys
->
i_tracks_num
,
...
...
@@ -214,7 +216,7 @@ static int AddDevice( services_discovery_t *p_sd,
}
else
{
msg_
Info
(
p_sd
,
"No device found, after all"
);
msg_
Warn
(
p_sd
,
"No device found, after all"
);
return
VLC_EGENERIC
;
}
}
...
...
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