vlc | branch: master | Steve Lhomme <[email protected]> | Wed May 6 15:45:34 2020 +0200| [1d9905e3713727cbc33307255b612f5d71df0b8f] | committer: Steve Lhomme
src: simplify logs We know what app we're running. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1d9905e3713727cbc33307255b612f5d71df0b8f --- src/config/file.c | 2 +- src/libvlc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/file.c b/src/config/file.c index c7e2e5c718..ae6e8b9ce5 100644 --- a/src/config/file.c +++ b/src/config/file.c @@ -102,7 +102,7 @@ static FILE *config_OpenConfigFile( vlc_object_t *p_obj ) /* Old config file found. We want to write it at the * new location now. */ msg_Info( p_obj, "Found old config file at %s. " - "VLC will now use %s.", psz_old, psz_filename ); + "now using %s.", psz_old, psz_filename ); char *psz_readme; if( asprintf(&psz_readme,"%s/.vlc/README", home ) != -1 ) diff --git a/src/libvlc.c b/src/libvlc.c index 789a320300..53828343c8 100644 --- a/src/libvlc.c +++ b/src/libvlc.c @@ -214,7 +214,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, priv->p_thumbnailer = vlc_thumbnailer_Create( VLC_OBJECT( p_libvlc ) ); if ( priv->p_thumbnailer == NULL ) - msg_Warn( p_libvlc, "Failed to instantiate VLC thumbnailer" ); + msg_Warn( p_libvlc, "Failed to instantiate thumbnailer" ); /* * Initialize hotkey handling _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
