Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Kdenlive
Manage
Activity
Members
Labels
Plan
Issues
462
Issue boards
Milestones
Wiki
Bugzilla
Code
Merge requests
16
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Multimedia
Kdenlive
Commits
63f23256
Commit
63f23256
authored
5 years ago
by
Yuri Chornoivan
Committed by
Vincent Pinon
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Try to make it compile with gcc 9
BUG: 413416
Signed-off-by:
Vincent Pinon
<
vpinon@kde.org
>
parent
5f940760
No related branches found
No related tags found
No related merge requests found
Pipeline
#9974
passed with stage
in 14 minutes and 33 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/lib/external/media_ctrl/mediactrl.c
+2
-1
2 additions, 1 deletion
src/lib/external/media_ctrl/mediactrl.c
with
2 additions
and
1 deletion
src/lib/external/media_ctrl/mediactrl.c
+
2
−
1
View file @
63f23256
...
...
@@ -351,8 +351,9 @@ int probe_device(struct media_ctrl *mc)
void
find_first_device
(
struct
media_ctrl
*
mc
)
{
char
buf
[
256
];
int
i
;
for
(
int
i
=
0
;
i
<
32
;
i
++
)
{
for
(
i
=
0
;
i
<
32
;
i
++
)
{
sprintf
(
buf
,
"/dev/input/event%d"
,
i
);
int
fd
=
open
(
buf
,
O_RDONLY
);
if
(
fd
<
0
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment