diff options
author | Christophe Fergeau <teuf@gnome.org> | 2007-09-30 17:43:49 +0000 |
---|---|---|
committer | Christophe Fergeau <teuf@gnome.org> | 2007-09-30 17:43:49 +0000 |
commit | 6e5ba9347d78dfcf374c9d479bf50e01df53dd55 (patch) | |
tree | 1e5e92621309feb75194e4723ab261181ec0d4bf | |
parent | fccdac2a079fc77f885f9a145753c881c2bfa5ef (diff) | |
download | libgpod-6e5ba9347d78dfcf374c9d479bf50e01df53dd55.tar.gz libgpod-6e5ba9347d78dfcf374c9d479bf50e01df53dd55.tar.xz libgpod-6e5ba9347d78dfcf374c9d479bf50e01df53dd55.zip |
* src/itdb_itunesdb.c: (itdb_write_checksum): remove debugging g_print
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1708 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/itdb_itunesdb.c | 9 |
2 files changed, 4 insertions, 9 deletions
@@ -1,5 +1,9 @@ 2007-09-30 Christophe Fergeau <teuf@gnome.org> + * src/itdb_itunesdb.c: (itdb_write_checksum): remove debugging g_print + +2007-09-30 Christophe Fergeau <teuf@gnome.org> + * src/itdb_device.c: fix typo and don't mark iPod Classic as read-only 2007-09-28 Christophe Fergeau <teuf@gnome.org> diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c index 35b01c5..0b944a0 100644 --- a/src/itdb_itunesdb.c +++ b/src/itdb_itunesdb.c @@ -5045,15 +5045,6 @@ static gboolean itdb_write_checksum (Itdb_iTunesDB *db) result = itdb_write_checksum_to_file (itdb_path, checksum, len); g_free (itdb_path); - - { - unsigned int i; - g_print ("Checksum: "); - for (i = 0; i < strlen ((char *)checksum); i++) { - g_print ("%02x ", checksum[i]); - } - } - g_print ("\n"); g_free (checksum); return result; |