diff options
author | Christophe Fergeau <teuf@gnome.org> | 2007-10-09 20:23:23 +0000 |
---|---|---|
committer | Christophe Fergeau <teuf@gnome.org> | 2007-10-09 20:23:23 +0000 |
commit | 88a33023d433cf16a372a13f0497cbf0e86f0d51 (patch) | |
tree | 0c1064c5f1b81de6043509cf7a5614a25345f88d | |
parent | a678b085a1a3c7cbe1de95ed5ee66ade21be68d1 (diff) | |
download | libgpod-88a33023d433cf16a372a13f0497cbf0e86f0d51.tar.gz libgpod-88a33023d433cf16a372a13f0497cbf0e86f0d51.tar.xz libgpod-88a33023d433cf16a372a13f0497cbf0e86f0d51.zip |
* src/itdb_device.c: (itdb_device_requires_checksum): add missing
(unreachable) return
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1725 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-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; } |