summaryrefslogtreecommitdiff
path: root/libcaja-private/caja-file-operations.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcaja-private/caja-file-operations.c')
-rw-r--r--libcaja-private/caja-file-operations.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/libcaja-private/caja-file-operations.c b/libcaja-private/caja-file-operations.c
index 35ddf81e..e310de1f 100644
--- a/libcaja-private/caja-file-operations.c
+++ b/libcaja-private/caja-file-operations.c
@@ -68,8 +68,6 @@
#include "caja-file-conflict-dialog.h"
#include "caja-undostack-manager.h"
-#include <src/glibcompat.h> /* for g_list_free_full */
-
/* TODO: TESTING!!! */
typedef struct {
@@ -851,14 +849,10 @@ custom_size_to_string (char *format, va_list va)
size = va_arg (va, goffset);
- #if GLIB_CHECK_VERSION(2, 30, 0)
- if (g_settings_get_boolean (caja_preferences, CAJA_PREFERENCES_USE_IEC_UNITS))
- return g_format_size_full (size, G_FORMAT_SIZE_IEC_UNITS);
- else
- return g_format_size(size);
- #else
- return g_format_size_for_display(size);
- #endif
+ if (g_settings_get_boolean (caja_preferences, CAJA_PREFERENCES_USE_IEC_UNITS))
+ return g_format_size_full (size, G_FORMAT_SIZE_IEC_UNITS);
+ else
+ return g_format_size(size);
}
static void
@@ -5273,7 +5267,7 @@ link_file (CopyMoveJob *job,
if (not_local) {
secondary = f (_("Symbolic links only supported for local files"));
details = NULL;
- } else if (IS_IO_ERROR (error, NOT_SUPPORTED)) {
+ } else if (error != NULL && IS_IO_ERROR (error, NOT_SUPPORTED)) {
secondary = f (_("The target doesn't support symbolic links."));
details = NULL;
} else {