git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
586988c
)
Compilation warning fix.
author
Laurent Aimar
<fenrir@videolan.org>
Fri, 25 May 2007 19:18:12 +0000
(19:18 +0000)
committer
Laurent Aimar
<fenrir@videolan.org>
Fri, 25 May 2007 19:18:12 +0000
(19:18 +0000)
src/misc/objects.c
patch
|
blob
|
history
diff --git
a/src/misc/objects.c
b/src/misc/objects.c
index
2ce0126
..
0ba4961
100644
(file)
--- a/
src/misc/objects.c
+++ b/
src/misc/objects.c
@@
-931,7
+931,7
@@
static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
printf( ": %f", p_var->val.f_float );
break;
case VLC_VAR_TIME:
- printf( ": " I64Fi, p_var->val.i_time );
+ printf( ": " I64Fi,
(int64_t)
p_var->val.i_time );
break;
case VLC_VAR_ADDRESS:
printf( ": %p", p_var->val.p_address );