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
9c9e6346
Commit
9c9e6346
authored
Nov 05, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove tabs in source code
parent
341e98d3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
src/input/es_out_timeshift.c
src/input/es_out_timeshift.c
+1
-1
src/misc/events.c
src/misc/events.c
+1
-1
src/posix/filesystem.c
src/posix/filesystem.c
+3
-3
No files found.
src/input/es_out_timeshift.c
View file @
9c9e6346
...
...
@@ -213,7 +213,7 @@ struct es_out_id_t
struct
es_out_sys_t
{
input_thread_t
*
p_input
;
es_out_t
*
p_out
;
es_out_t
*
p_out
;
/* Configuration */
int64_t
i_tmp_size_max
;
/* Maximal temporary file size in byte */
...
...
src/misc/events.c
View file @
9c9e6346
...
...
@@ -223,7 +223,7 @@ void vlc_event_send( vlc_event_manager_t * p_em,
if
(
listeners_group
->
b_sublistener_removed
)
{
/* If a callback was removed inside one of our callback, this gets
* called */
* called */
bool
valid_listener
;
vlc_mutex_lock
(
&
p_em
->
object_lock
);
valid_listener
=
group_contains_listener
(
listeners_group
,
cached_listener
);
...
...
src/posix/filesystem.c
View file @
9c9e6346
...
...
@@ -88,9 +88,9 @@ int vlc_openat (int dir, const char *filename, int flags, ...)
if
(
fd
!=
-
1
)
fcntl
(
fd
,
F_SETFD
,
FD_CLOEXEC
);
#else
VLC_UNUSED
(
dir
);
VLC_UNUSED
(
filename
);
VLC_UNUSED
(
mode
);
VLC_UNUSED
(
dir
);
VLC_UNUSED
(
filename
);
VLC_UNUSED
(
mode
);
int
fd
=
-
1
;
errno
=
ENOSYS
;
...
...
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