From a16618e41082c5c14a58fcd69ce8646e33a1c405 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 30 Jan 2010 23:29:10 +0200 Subject: [PATCH] More verbose error when failing to load the cache file --- src/modules/cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2