Commit 22cd8044 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix format string

parent d838e5ce
......@@ -145,7 +145,7 @@ void scan_Clean( scan_t *p_scan )
static int ScanDvbCNextFast( scan_t *p_scan, scan_configuration_t *p_cfg, double *pf_pos )
{
msg_Dbg( p_scan->p_obj, "Scan index %d", p_scan->i_index );
msg_Dbg( p_scan->p_obj, "Scan index %"PRId64, p_scan->i_index );
if( p_scan->i_index <= ( 10 ) )
{
p_cfg->i_frequency = 100500000 + ( ( p_scan->i_index ) * 700000);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment