Whitespace cleanup
authorMichal Čihař <mcihar@suse.cz>
Tue, 21 Aug 2012 09:40:57 +0000 (11:40 +0200)
committerMichal Čihař <mcihar@suse.cz>
Tue, 21 Aug 2012 09:40:57 +0000 (11:40 +0200)
src/color-man.c
src/exif-common.c

index 1a7118c..6c88a8f 100644 (file)
@@ -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;
index 99d38be..43498f9 100644 (file)
@@ -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;