Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
1e8de675
Commit
1e8de675
authored
Jul 05, 2010
by
ivoire
Browse files
Fix printf type.
parent
3fc54c1a
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/control/http/rpn.c
View file @
1e8de675
...
...
@@ -614,7 +614,7 @@ void EvaluateRPN( intf_thread_t *p_intf, mvar_t *vars,
case
VLC_VAR_INTEGER
:
case
VLC_VAR_HOTKEY
:
val
.
i_int
=
SSPopN
(
st
,
vars
);
msg_Dbg
(
p_intf
,
"requested %s var change: %s->%
d
"
,
msg_Dbg
(
p_intf
,
"requested %s var change: %s->%"
PRIu64
,
psz_object
,
psz_variable
,
val
.
i_int
);
break
;
case
VLC_VAR_STRING
:
...
...
modules/video_filter/mosaic.c
View file @
1e8de675
...
...
@@ -772,7 +772,7 @@ static int MosaicCallback( vlc_object_t *p_this, char const *psz_var,
else
if
(
VAR_IS
(
"xoffset"
)
)
{
vlc_mutex_lock
(
&
p_sys
->
lock
);
msg_Dbg
(
p_this
,
"changing x offset from %dpx to %px"
,
msg_Dbg
(
p_this
,
"changing x offset from %dpx to %
d
px"
,
p_sys
->
i_xoffset
,
(
int
)
newval
.
i_int
);
p_sys
->
i_xoffset
=
__MAX
(
newval
.
i_int
,
0
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment