commit 441631322be109da6489b2aad670bdba916315c0
Author: Jacob Boerema <jgboerema gmail com>
Date: Thu Mar 4 15:23:29 2021 -0500
plug-ins, TIFF: Oops, forgot to save formatting fixes before committing.
plug-ins/file-tiff/file-tiff-load.c | 44 ++++++++++++++++++-------------------
1 file changed, 22 insertions(+), 22 deletions(-)
---
diff --git a/plug-ins/file-tiff/file-tiff-load.c b/plug-ins/file-tiff/file-tiff-load.c
index 7429436ee1..7038ceaba7 100644
--- a/plug-ins/file-tiff/file-tiff-load.c
+++ b/plug-ins/file-tiff/file-tiff-load.c
@@ -736,18 +736,18 @@ load_image (GFile *file,
if (profile_linear)
{
base_format = babl_format_new (babl_model ("YA"),
- type,
- babl_component ("Y"),
- babl_component ("A"),
- NULL);
+ type,
+ babl_component ("Y"),
+ babl_component ("A"),
+ NULL);
}
else
{
base_format = babl_format_new (babl_model ("Y'A"),
- type,
- babl_component ("Y'"),
- babl_component ("A"),
- NULL);
+ type,
+ babl_component ("Y'"),
+ babl_component ("A"),
+ NULL);
}
}
else
@@ -755,18 +755,18 @@ load_image (GFile *file,
if (profile_linear)
{
base_format = babl_format_new (babl_model ("YaA"),
- type,
- babl_component ("Ya"),
- babl_component ("A"),
- NULL);
+ type,
+ babl_component ("Ya"),
+ babl_component ("A"),
+ NULL);
}
else
{
base_format = babl_format_new (babl_model ("Y'aA"),
- type,
- babl_component ("Y'a"),
- babl_component ("A"),
- NULL);
+ type,
+ babl_component ("Y'a"),
+ babl_component ("A"),
+ NULL);
}
}
}
@@ -775,16 +775,16 @@ load_image (GFile *file,
if (profile_linear)
{
base_format = babl_format_new (babl_model ("Y"),
- type,
- babl_component ("Y"),
- NULL);
+ type,
+ babl_component ("Y"),
+ NULL);
}
else
{
base_format = babl_format_new (babl_model ("Y'"),
- type,
- babl_component ("Y'"),
- NULL);
+ type,
+ babl_component ("Y'"),
+ NULL);
}
}
break;