]> git.sesse.net Git - vlc/commitdiff
More verbose error when failing to load the cache file
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 30 Jan 2010 21:29:10 +0000 (23:29 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 30 Jan 2010 21:29:10 +0000 (23:29 +0200)
src/modules/cache.c

index d06a3c5cd849762af7df4500750e9c512b954803..a872adc33509c4c24efcf446c681d1d4413503d4 100644 (file)
@@ -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;