summaryrefslogtreecommitdiffstats
path: root/src/ithumb-writer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ithumb-writer.c')
-rw-r--r--src/ithumb-writer.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ithumb-writer.c b/src/ithumb-writer.c
index 46acd70..9880e8d 100644
--- a/src/ithumb-writer.c
+++ b/src/ithumb-writer.c
@@ -1566,10 +1566,10 @@ itdb_write_ithumb_files (Itdb_DB *db)
}
type = track->artwork->thumbnail->data_type;
if (type != ITDB_THUMB_TYPE_IPOD) {
- GList *it;
+ GList *itw;
thumb_ipod = (Itdb_Thumb_Ipod *)itdb_thumb_ipod_new ();
- for (it = writers; it != NULL; it = it->next) {
- write_thumbnail (it->data,
+ for (itw = writers; itw != NULL; itw = itw->next) {
+ write_thumbnail (itw->data,
track->artwork,
thumb_ipod);
}
@@ -1591,9 +1591,10 @@ itdb_write_ithumb_files (Itdb_DB *db)
}
type = photo->thumbnail->data_type;
if (type != ITDB_THUMB_TYPE_IPOD) {
+ GList *itw;
thumb_ipod = (Itdb_Thumb_Ipod *)itdb_thumb_ipod_new ();
- for (it = writers; it != NULL; it = it->next) {
- write_thumbnail (it->data, photo, thumb_ipod);
+ for (itw = writers; itw != NULL; itw = itw->next) {
+ write_thumbnail (itw->data, photo, thumb_ipod);
}
itdb_thumb_free (photo->thumbnail);
photo->thumbnail = (Itdb_Thumb *)thumb_ipod;