removed g_error instruction as it seems to crash the program

newfile
Markus Koch 2017-02-09 16:15:38 +01:00
parent 090db6c228
commit d066bdde58
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ static void mdiary_add_file_to_store(gchar *filename, GtkListStore *entryListSto
file = g_file_new_for_path(filename);
stream = g_file_read(file, NULL, &err);
if (err != NULL) {
g_error("PARSER: Could not open %s for reading: %s\n", filename, err->message);
g_print("PARSER: %s\n", filename, err->message);
g_error_free(err);
return;
}