From 6add489cc23d8c2a57e39ae5dbc1475ba982edc7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Mon, 26 Nov 2007 14:10:30 +0000 Subject: [PATCH] fix compilation on Linux --- src/misc/update.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/misc/update.c b/src/misc/update.c index 7cf6ffeebd..8c40171fd2 100644 --- a/src/misc/update.c +++ b/src/misc/update.c @@ -1365,11 +1365,8 @@ void update_download_for_real( download_thread_t *p_this ) if( !p_this->src.psz_md5 || !psz_md5 || strncmp( psz_md5, p_this->src.psz_md5, 32 ) ) { - msg_Err( p_this, - _("%s has an incorrect checksum, download failed or mirror is compromised.\n - Please run an antivirus on %s, and report if that file is trojaned.\n - If not, please try later."), - p_this->src.psz_description ); + msg_Err( p_this, _("%s has an incorrect checksum, download failed or mirror is compromised.\n Please run an antivirus on %s, and report if that file is trojaned.\n If not, please try later."), + p_this->src.psz_description ); } free( psz_md5 ); } -- 2.20.1