[vlc-devel] commit: Missing const. ( Rémi Duraffort )
git version control
git at videolan.org
Fri Jun 19 10:40:12 CEST 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Fri Jun 19 10:38:17 2009 +0200| [86bb036205f387ac6ed0c6ceaa3ae80719a115e0] | committer: Rémi Duraffort
Missing const.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=86bb036205f387ac6ed0c6ceaa3ae80719a115e0
---
modules/codec/cc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/codec/cc.c b/modules/codec/cc.c
index 59614a1..cb1dc4b 100644
--- a/modules/codec/cc.c
+++ b/modules/codec/cc.c
@@ -603,7 +603,7 @@ static void Eia608RollUp( eia608_t *h )
/* Reset current row */
Eia608ClearScreenRow( h, i_screen, h->cursor.i_row );
}
-static void Eia608ParseChannel( eia608_t *h, uint8_t d[2] )
+static void Eia608ParseChannel( eia608_t *h, const uint8_t d[2] )
{
/* Check odd parity */
static const int p4[16] = {
More information about the vlc-devel
mailing list