Changeset 3c74d129dd3d8a4bd11a4696f13af83103fe20fb
- Timestamp:
- 05/07/08 21:26:11
(3 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1210188371 +0300
- git-parent:
[4a47b7b922e556a11800e2efe2d92640766187cf]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1210188371 +0300
- Message:
Fix incorrect printf argument
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8ee62bb |
r3c74d12 |
|
| 223 | 223 | psz_from = ( char * )malloc( 20 * sizeof( char ) ); |
|---|
| 224 | 224 | i_from = private_mediacontrol_position2microsecond( self->p_media_player, a_position ) / 1000000; |
|---|
| 225 | | snprintf( psz_from, 20, "start-time=%ld", i_from ); |
|---|
| | 225 | snprintf( psz_from, 20, "start-time=%"PRId64, i_from ); |
|---|
| 226 | 226 | libvlc_media_add_option( p_media, psz_from, &ex ); |
|---|
| 227 | 227 | HANDLE_LIBVLC_EXCEPTION_VOID( &ex ); |
|---|