diff options
author | Bastien Nocera <hadess@hadess.net> | 2010-06-01 19:07:16 +0100 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2010-06-01 19:07:16 +0100 |
commit | 17bff27d807375c4cdfbc8bae0a9ac9b2cf1b3c6 (patch) | |
tree | b2567c7c6085af220b7a9a6b71cb71ace2a45744 | |
parent | f5c6405416ae14841e72828ba6220836395509bd (diff) | |
download | totem-pl-parser-17bff27d807375c4cdfbc8bae0a9ac9b2cf1b3c6.tar.gz |
Fix small compile-time warning
-rw-r--r-- | plparse/totem-pl-parser-pls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plparse/totem-pl-parser-pls.c b/plparse/totem-pl-parser-pls.c index 4a3ef9e..ee6493e 100644 --- a/plparse/totem-pl-parser-pls.c +++ b/plparse/totem-pl-parser-pls.c @@ -168,7 +168,7 @@ totem_pl_parser_add_pls_with_contents (TotemPlParser *parser, TotemPlParserResult retval = TOTEM_PL_PARSER_RESULT_UNHANDLED; GFile *base_file; char **lines; - int i, num_entries; + guint i, num_entries; char *playlist_title; gboolean fallback; GHashTable *entries; |