From: Michal Čihař Date: Tue, 21 Aug 2012 09:40:57 +0000 (+0200) Subject: Whitespace cleanup X-Git-Tag: v1.2~99^2~1 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=5bc47e5f1723ff39cbcd13cfbdb95d2348363219 Whitespace cleanup --- 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;