From: RĂ©mi Denis-Courmont Date: Sat, 30 Jan 2010 21:29:10 +0000 (+0200) Subject: More verbose error when failing to load the cache file X-Git-Tag: 1.1.0-ff~644 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a16618e41082c5c14a58fcd69ce8646e33a1c405;p=vlc More verbose error when failing to load the cache file --- diff --git a/src/modules/cache.c b/src/modules/cache.c index d06a3c5cd8..a872adc335 100644 --- a/src/modules/cache.c +++ b/src/modules/cache.c @@ -113,7 +113,7 @@ void CacheLoad( vlc_object_t *p_this, module_bank_t *p_bank, bool b_delete ) file = utf8_fopen( psz_filename, "rb" ); if( !file ) { - msg_Warn( p_this, "could not open plugins cache file %s for reading", + msg_Warn( p_this, "cannot read %s (%m)", psz_filename ); free( psz_filename ); return;