[evolution] Misc: Remove unneeded g_print() calls in the vCard importer



commit 006ff682f14accd723ab89d0a0c4444016120f51
Author: Milan Crha <mcrha redhat com>
Date:   Thu May 27 08:24:24 2021 +0200

    Misc: Remove unneeded g_print() calls in the vCard importer

 src/addressbook/importers/evolution-vcard-importer.c | 2 --
 1 file changed, 2 deletions(-)
---
diff --git a/src/addressbook/importers/evolution-vcard-importer.c 
b/src/addressbook/importers/evolution-vcard-importer.c
index 9117a7b150..2eb7185f81 100644
--- a/src/addressbook/importers/evolution-vcard-importer.c
+++ b/src/addressbook/importers/evolution-vcard-importer.c
@@ -314,13 +314,11 @@ guess_vcard_encoding (const gchar *filename)
 
        handle = g_fopen (filename, "r");
        if (handle == NULL) {
-               g_print ("\n");
                return VCARD_ENCODING_NONE;
        }
 
        if (fgets (line, 4096, handle) == NULL) {
                fclose (handle);
-               g_print ("\n");
                return VCARD_ENCODING_NONE;
        }
        fclose (handle);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]