Commit 6cc2e234 authored by Felix Paul Kühne's avatar Felix Paul Kühne

update: display percentage of received update correctly

parent d8eccf08
...@@ -611,9 +611,9 @@ static void* update_DownloadReal( vlc_object_t *p_this ) ...@@ -611,9 +611,9 @@ static void* update_DownloadReal( vlc_object_t *p_this )
psz_downloaded = size_str( l_downloaded ); psz_downloaded = size_str( l_downloaded );
f_progress = (float)l_downloaded/(float)l_size; f_progress = (float)l_downloaded/(float)l_size;
if( asprintf( &psz_status, _( "%s\nDownloading... %s/%s %.1f%% done" ), if( asprintf( &psz_status, _( "%s\nDownloading... %s/%s - %.1f%% done" ),
p_update->release.psz_url, psz_downloaded, psz_size, p_update->release.psz_url, psz_downloaded, psz_size,
f_progress ) != -1 ) f_progress*100 ) != -1 )
{ {
dialog_ProgressSet( p_progress, psz_status, f_progress ); dialog_ProgressSet( p_progress, psz_status, f_progress );
free( psz_status ); free( psz_status );
......
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