diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/itdb_device.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2007-10-09 Christophe Fergeau <teuf@gnome.org> + + * src/itdb_device.c: (itdb_device_requires_checksum): add missing + (unreachable) return + 2007-10-07 Christophe Fergeau <teuf@gnome.org> * src/itdb_device.c: (itdb_device_requires_checksum): diff --git a/src/itdb_device.c b/src/itdb_device.c index 757fdca..d6ace10 100644 --- a/src/itdb_device.c +++ b/src/itdb_device.c @@ -1100,4 +1100,6 @@ G_GNUC_INTERNAL gboolean itdb_device_requires_checksum (Itdb_Device *device) case ITDB_IPOD_GENERATION_SIXTH: return FALSE; } + + return FALSE; } |