changeset 19341:f6661e33aa60

"[ass] init" message looks better when it starts with the capital letter 'I'.
author eugeni
date Sun, 06 Aug 2006 18:02:42 +0000
parents f0d49f38ce97
children 4e68a3881201
files libmpcodecs/vf_ass.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_ass.c	Sun Aug 06 17:56:01 2006 +0000
+++ b/libmpcodecs/vf_ass.c	Sun Aug 06 18:02:42 2006 +0000
@@ -358,10 +358,10 @@
 	if (request == VFCTRL_EOSD) {
 		vf->priv->ass_priv = ass_init();
 		if (!vf->priv->ass_priv) {
-			mp_msg(MSGT_VFILTER, MSGL_ERR, "[ass] init failed\n");
+			mp_msg(MSGT_VFILTER, MSGL_ERR, "[ass] Init failed\n");
 			return 0;
 		} else
-			mp_msg(MSGT_VFILTER, MSGL_INFO, "[ass] init\n");
+			mp_msg(MSGT_VFILTER, MSGL_INFO, "[ass] Init\n");
 		return CONTROL_TRUE;
 	}
 	return vf_next_control(vf, request, data);