[svn r397] Fixed wrong reference to a gmyth_transcoder's function name.
1.1 --- a/gmyth/src/gmyth_transcode.c Tue Mar 06 14:17:04 2007 +0000
1.2 +++ b/gmyth/src/gmyth_transcode.c Tue Mar 06 20:33:02 2007 +0000
1.3 @@ -111,7 +111,8 @@
1.4 * @return gchar* with file or iso format
1.5 *
1.6 **/
1.7 -static gchar* gmyth_transcoder_date_change_format (gchar* date_s, int format)
1.8 +static gchar*
1.9 +gmyth_transcoder_date_change_format (gchar* date_s, int format)
1.10 {
1.11 if (date_s != NULL)
1.12 {
1.13 @@ -183,7 +184,7 @@
1.14
1.15 // Get starttime
1.16 gchar** date = g_strsplit(splited[1], ".", 2);
1.17 - transcoder->starttime = gmyth_transcode_date_change_format(date[0], DATE_ISO);
1.18 + transcoder->starttime = gmyth_transcoder_date_change_format(date[0], DATE_ISO);
1.19
1.20 transcoder->filename = g_strdup(file);
1.21 }