Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
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
libdvbpsi
Commits
9f92ac1e
Commit
9f92ac1e
authored
Jul 18, 2015
by
Daniel Kamil Kozar
Committed by
Jean-Paul Saman
Jan 12, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avoid the stupid cast in loop body
Signed-off-by:
Jean-Paul Saman
<
jpsaman@videolan.org
>
parent
534d463e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
misc/test_dr.h
misc/test_dr.h
+2
-1
No files found.
misc/test_dr.h
View file @
9f92ac1e
...
...
@@ -131,7 +131,8 @@
static
void
BOZO_fill_array
(
void
*
a
,
size_t
len
)
{
for
(
size_t
i
=
0
;
i
<
len
;
++
i
)
((
uint8_t
*
)
a
)[
i
]
=
rand
();
uint8_t
*
b
=
a
;
for
(
size_t
i
=
0
;
i
<
len
;
++
i
)
b
[
i
]
=
rand
();
}
#define BOZO_begin_array(name, len_name, min_size) \
...
...
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