diff options
author | phintuka <phintuka> | 2010-02-23 22:35:54 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-02-23 22:35:54 +0000 |
commit | 3d107f38103e88ba4bf12c2df1996b36c379402e (patch) | |
tree | 7e3fb859009e28ef2e94d47f585aa07e19ddd764 | |
parent | 4f3b8d33e3020f27aaa0b281df3b8168f49a0eb1 (diff) | |
download | xineliboutput-3d107f38103e88ba4bf12c2df1996b36c379402e.tar.gz xineliboutput-3d107f38103e88ba4bf12c2df1996b36c379402e.tar.bz2 |
Added missing cString -> const char * type conversion
-rw-r--r-- | tools/playlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/playlist.c b/tools/playlist.c index 70cdf6bf..5ea22c7f 100644 --- a/tools/playlist.c +++ b/tools/playlist.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: playlist.c,v 1.27 2010-02-23 22:28:52 phintuka Exp $ + * $Id: playlist.c,v 1.28 2010-02-23 22:35:54 phintuka Exp $ * */ @@ -154,7 +154,7 @@ static int extractor_callback_id3(void *priv, Item->Album = data; break; case EXTRACTOR_METATYPE_TRACK_NUMBER: - Item->Tracknumber = strlen(data) == 1 ? cString::sprintf("0%s", data) : data; + Item->Tracknumber = strlen(data) == 1 ? *cString::sprintf("0%s", data) : data; break; default: break; |