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
66218340
Commit
66218340
authored
Nov 10, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile fix
parent
2011f4f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/access_filter/dump.c
modules/access_filter/dump.c
+3
-3
No files found.
modules/access_filter/dump.c
View file @
66218340
...
@@ -284,7 +284,7 @@ static void Trigger (access_t *access)
...
@@ -284,7 +284,7 @@ static void Trigger (access_t *access)
// and there is an off-by-one in the following sprintf().
// and there is an off-by-one in the following sprintf().
return
;
return
;
const
char
*
home
=
access
->
p_
lib
vlc
->
psz_homedir
;
const
char
*
home
=
access
->
p_vlc
->
psz_homedir
;
/* Hmm what about the extension?? */
/* Hmm what about the extension?? */
char
filename
[
strlen
(
home
)
+
sizeof
(
"/vlcdump-YYYYYYYYY-MM-DD-HH-MM-SS.ts"
)];
char
filename
[
strlen
(
home
)
+
sizeof
(
"/vlcdump-YYYYYYYYY-MM-DD-HH-MM-SS.ts"
)];
...
@@ -343,12 +343,12 @@ static int KeyHandler (vlc_object_t *obj, char const *varname,
...
@@ -343,12 +343,12 @@ static int KeyHandler (vlc_object_t *obj, char const *varname,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
data
)
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
data
)
{
{
access_t
*
access
=
data
;
access_t
*
access
=
data
;
struct
hotkey
*
key
;
(
void
)
oldval
;
(
void
)
oldval
;
(
void
)
obj
;
(
void
)
obj
;
for
(
struct
hotkey
*
key
=
access
->
p_libvlc
->
p_hotkeys
;
for
(
key
=
access
->
p_libvlc
->
p_hotkeys
;
key
->
psz_action
!=
NULL
;
key
++
)
key
->
psz_action
!=
NULL
;
key
++
)
{
{
if
(
key
->
i_key
==
newval
.
i_int
)
if
(
key
->
i_key
==
newval
.
i_int
)
{
{
...
...
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