[gimp] plug-ins: some alignment cleaning.



commit 7f85244bcc4e883345adf640482c615d4af7ccca
Author: Jehan <jehan girinstud io>
Date:   Sat Jul 29 00:15:45 2017 +0200

    plug-ins: some alignment cleaning.

 plug-ins/file-raw/file-darktable.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/plug-ins/file-raw/file-darktable.c b/plug-ins/file-raw/file-darktable.c
index 99fbf7e..a7feab7 100644
--- a/plug-ins/file-raw/file-darktable.c
+++ b/plug-ins/file-raw/file-darktable.c
@@ -100,8 +100,8 @@ get_executable_path (const gchar *suffix,
 
     /* For macOS, attempt searching for a darktable app bundle first. */
     status = LSFindApplicationForInfo (kLSUnknownCreator,
-                                      CFSTR ("org.darktable"),
-                                      NULL, NULL, &bundle_url);
+                                       CFSTR ("org.darktable"),
+                                       NULL, NULL, &bundle_url);
 
     if (status >= 0)
       {
@@ -124,7 +124,7 @@ get_executable_path (const gchar *suffix,
         len = CFStringGetLength (path);
         ret = g_malloc0 (len * 2 * sizeof (gchar));
         if (!CFStringGetCString (path, ret, 2 * len * sizeof (gchar),
-                                kCFStringEncodingUTF8))
+                                 kCFStringEncodingUTF8))
           ret = NULL;
 
         CFRelease (path);
@@ -440,7 +440,7 @@ load_image (const gchar  *filename,
   /* linear sRGB for now as GIMP uses that internally in many places anyway */
   gboolean  search_path      = FALSE;
   gchar    *exec_path        = get_executable_path (NULL, &search_path);
-  gchar *argv[] =
+  gchar    *argv[] =
     {
       exec_path,
       "--library", ":memory:",
@@ -510,7 +510,7 @@ load_thumbnail_image (const gchar   *filename,
 
   gboolean  search_path      = FALSE;
   gchar    *exec_path        = get_executable_path ("-cli", &search_path);
-  gchar *argv[] =
+  gchar    *argv[] =
     {
       exec_path,
       (gchar *) filename, filename_out,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]