]> git.sesse.net Git - vlc/blobdiff - src/misc/update.c
Remove unused parameter
[vlc] / src / misc / update.c
index 647626ce0be27a660c58ddaf088ea5b28bdec888..7a0f51efa05285664421193305d2de367e4420b5 100644 (file)
@@ -1392,7 +1392,7 @@ void update_Check( update_t *p_update, void (*pf_callback)( void*, bool ), void
     p_uct->p_data = p_data;
 
     vlc_thread_create( p_uct, "check for update", update_CheckReal,
-                       VLC_THREAD_PRIORITY_LOW, false );
+                       VLC_THREAD_PRIORITY_LOW );
 }
 
 void* update_CheckReal( vlc_object_t* p_this )
@@ -1505,7 +1505,7 @@ void update_Download( update_t *p_update, const char *destination )
     p_udt->psz_destination = destination ? strdup( destination ) : NULL;
 
     vlc_thread_create( p_udt, "download update", update_DownloadReal,
-                       VLC_THREAD_PRIORITY_LOW, false );
+                       VLC_THREAD_PRIORITY_LOW );
 }
 
 static void* update_DownloadReal( vlc_object_t *p_this )