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
332f390d
Commit
332f390d
authored
Aug 25, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvb scan: use unsigned indices (CID#1048723)
parent
1c4635c2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/access/dvb/scan.c
modules/access/dvb/scan.c
+2
-2
modules/access/dvb/scan.h
modules/access/dvb/scan.h
+3
-3
No files found.
modules/access/dvb/scan.c
View file @
332f390d
...
...
@@ -88,7 +88,7 @@ struct scan_t
{
vlc_object_t
*
p_obj
;
struct
dialog_progress_bar_t
*
p_dialog
;
int64_t
i_index
;
u
int64_t
i_index
;
scan_parameter_t
parameter
;
int64_t
i_time_start
;
...
...
@@ -235,7 +235,7 @@ static int ScanDvbSNextFast( scan_t *p_scan, scan_configuration_t *p_cfg, double
{
msg_Dbg
(
p_scan
->
p_obj
,
"Scan index %"
PRId64
,
p_scan
->
i_index
);
int
*
pi_count
=
&
p_scan
->
parameter
.
sat_info
.
i_count
;
unsigned
*
pi_count
=
&
p_scan
->
parameter
.
sat_info
.
i_count
;
if
(
!
p_scan
->
parameter
.
sat_info
.
psz_name
)
{
...
...
modules/access/dvb/scan.h
View file @
332f390d
...
...
@@ -54,7 +54,7 @@ typedef struct scan_parameter_t
int
i_max
;
int
i_step
;
int
i_count
;
/* Number of frequency test to do */
unsigned
i_count
;
/* Number of frequency test to do */
}
frequency
;
struct
...
...
@@ -64,7 +64,7 @@ typedef struct scan_parameter_t
int
i_max
;
int
i_step
;
int
i_count
;
unsigned
i_count
;
}
bandwidth
;
struct
...
...
@@ -73,7 +73,7 @@ typedef struct scan_parameter_t
char
*
psz_path
;
/* config file path */
scan_dvbs_transponder_t
*
p_transponders
;
int
i_count
;
unsigned
i_count
;
}
sat_info
;
}
scan_parameter_t
;
...
...
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