]> git.sesse.net Git - vlc/commitdiff
Little change to print the right message in the user progress
authorRémi Duraffort <ivoire@videolan.org>
Tue, 8 Jan 2008 15:37:10 +0000 (15:37 +0000)
committerRémi Duraffort <ivoire@videolan.org>
Tue, 8 Jan 2008 15:37:10 +0000 (15:37 +0000)
src/misc/update.c

index 07be6bac956ac68f8777fe4575d5c506389968f5..bf6c6b9576e750fc0fc996b3b8db41f8e649d7f5 100644 (file)
@@ -1220,7 +1220,7 @@ void update_DownloadReal( update_download_thread_t *p_udt )
         f_progress = 100.0*(float)l_downloaded/(float)l_size;
 
         if( asprintf( &psz_status, "%s\nDonwloading... %s/%s %.1f%% done", p_update->release.psz_url,
-                      psz_size, psz_downloaded, f_progress ) != -1 )
+                      psz_downloaded, psz_size, f_progress ) != -1 )
         {
             intf_ProgressUpdate( p_udt, i_progress, psz_status, f_progress, 0 );
             free( psz_status );