mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 22:43:46 +01:00
White spaces
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
73e8eedc35
commit
d895ad32a1
@ -524,7 +524,7 @@ prepare_document_open_from_gfile(GFile* source)
|
||||
GError* error = NULL;
|
||||
|
||||
GFile *tmpfile = g_file_new_tmp("zathura.gio.XXXXXX", &iostream, &error);
|
||||
if(tmpfile == NULL) {
|
||||
if (tmpfile == NULL) {
|
||||
if (error != NULL) {
|
||||
girara_error("Can not create temporary file: %s", error->message);
|
||||
g_error_free(error);
|
||||
@ -533,7 +533,7 @@ prepare_document_open_from_gfile(GFile* source)
|
||||
}
|
||||
|
||||
gboolean rc = g_file_copy(source, tmpfile, G_FILE_COPY_OVERWRITE, NULL, NULL, NULL, &error);
|
||||
if(rc == FALSE) {
|
||||
if (rc == FALSE) {
|
||||
if (error != NULL) {
|
||||
girara_error("Can not copy to temporary file: %s", error->message);
|
||||
g_error_free(error);
|
||||
|
Loading…
Reference in New Issue
Block a user