From: ddennedy Date: Fri, 7 Mar 2008 07:59:04 +0000 (+0000) Subject: kino/riff.c: fix failure to dlopen due to symbol signature mismatch on make_fourcc X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=8491eda0036ad9de4255eff05468f93c3cebd95b;p=melted kino/riff.c: fix failure to dlopen due to symbol signature mismatch on make_fourcc git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1105 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/kino/riff.cc b/src/modules/kino/riff.cc index 51ed210..2eef892 100644 --- a/src/modules/kino/riff.cc +++ b/src/modules/kino/riff.cc @@ -113,7 +113,7 @@ using std::endl; could not get it working on the gcc compiler so I had to use this workaround. We can now use id = make_fourcc("ABCD") instead. */ -FOURCC make_fourcc( char *s ) +FOURCC make_fourcc( const char *s ) { if ( s[ 0 ] == 0 ) return 0;