From 5bc47e5f1723ff39cbcd13cfbdb95d2348363219 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 21 Aug 2012 11:40:57 +0200 Subject: [PATCH] Whitespace cleanup --- src/color-man.c | 2 +- src/exif-common.c | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/color-man.c b/src/color-man.c index 1a7118c1..6c88a8f7 100644 --- a/src/color-man.c +++ b/src/color-man.c @@ -454,7 +454,7 @@ gboolean color_man_get_status(ColorMan *cm, gchar **image_profile, gchar **scree if (!cm) return FALSE; cc = cm->profile; - + if (image_profile) *image_profile = color_man_get_profile_name(cc->profile_in_type, cc->profile_in); if (screen_profile) *screen_profile = color_man_get_profile_name(cc->profile_out_type, cc->profile_out); return TRUE; diff --git a/src/exif-common.c b/src/exif-common.c index 99d38be0..43498f99 100644 --- a/src/exif-common.c +++ b/src/exif-common.c @@ -125,13 +125,13 @@ static gdouble get_crop_factor(ExifData *exif) static gboolean remove_suffix(gchar *str, const gchar *suffix, gint suffix_len) { gint str_len = strlen(str); - + if (suffix_len < 0) suffix_len = strlen(suffix); if (str_len < suffix_len) return FALSE; - + if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE; str[str_len - suffix_len] = '\0'; - + return TRUE; } @@ -161,7 +161,7 @@ static gchar *exif_build_formatted_Camera(ExifData *exif) gint i, j; g_strstrip(software); - + /* remove superfluous spaces (pentax K100D) */ for (i = 0, j = 0; software[i]; i++, j++) { @@ -655,14 +655,14 @@ void exif_init_cache(void) ExifData *exif_read_fd(FileData *fd) { gchar *sidecar_path; - + if (!exif_cache) exif_init_cache(); if (!fd) return NULL; - + if (file_cache_get(exif_cache, fd)) return fd->exif; g_assert(fd->exif == NULL); - + /* CACHE_TYPE_XMP_METADATA file should exist only if the metadata are * not writable directly, thus it should contain the most up-to-date version */ sidecar_path = NULL; -- 2.20.1