Commit f68e1815 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

DC1394: use SCNx64 instead of llx in sscanf

parent ff894ff1
......@@ -930,7 +930,7 @@ static int process_options( demux_t *p_demux )
else if( strncmp( token, "uid=", strlen("uid=") ) == 0)
{
token += strlen("uid=");
sscanf( token, "0x%llx", &p_sys->selected_uid );
sscanf( token, "0x %"SCNx64, &p_sys->selected_uid );
}
}
......
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