[gimp] libgimp: minor tab cleaning.
- From: Jehan Pagès <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] libgimp: minor tab cleaning.
- Date: Wed, 1 Feb 2017 01:00:43 +0000 (UTC)
commit d2ba594ab9effb58a09e13fbea21cf00b4d11eac
Author: Jehan <jehan girinstud io>
Date: Tue Jan 31 23:39:04 2017 +0100
libgimp: minor tab cleaning.
libgimp/gimp.c | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
---
diff --git a/libgimp/gimp.c b/libgimp/gimp.c
index fb6cd29..bebdbab 100644
--- a/libgimp/gimp.c
+++ b/libgimp/gimp.c
@@ -263,7 +263,7 @@ gimp_main (const GimpPlugInInfo *info,
t_SetDllDirectoryA p_SetDllDirectoryA;
p_SetDllDirectoryA = GetProcAddress (GetModuleHandle ("kernel32.dll"),
- "SetDllDirectoryA");
+ "SetDllDirectoryA");
if (p_SetDllDirectoryA)
(*p_SetDllDirectoryA) ("");
}
@@ -338,7 +338,7 @@ gimp_main (const GimpPlugInInfo *info,
t_SetProcessDEPPolicy p_SetProcessDEPPolicy;
p_SetProcessDEPPolicy = GetProcAddress (GetModuleHandle ("kernel32.dll"),
- "SetProcessDEPPolicy");
+ "SetProcessDEPPolicy");
if (p_SetProcessDEPPolicy)
(*p_SetProcessDEPPolicy) (PROCESS_DEP_ENABLE|PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION);
}
@@ -932,7 +932,7 @@ gimp_run_procedure (const gchar *name,
(void) va_arg (args, gchar **);
break;
case GIMP_PDB_COLOR:
- case GIMP_PDB_COLORARRAY:
+ case GIMP_PDB_COLORARRAY:
(void) va_arg (args, GimpRGB *);
break;
case GIMP_PDB_PARASITE:
@@ -1591,26 +1591,26 @@ gimp_extension_process (guint timeout)
struct timeval *tvp;
if (timeout)
- {
- tv.tv_sec = timeout / 1000;
- tv.tv_usec = (timeout % 1000) * 1000;
- tvp = &tv;
- }
+ {
+ tv.tv_sec = timeout / 1000;
+ tv.tv_usec = (timeout % 1000) * 1000;
+ tvp = &tv;
+ }
else
- tvp = NULL;
+ tvp = NULL;
FD_ZERO (&readfds);
FD_SET (g_io_channel_unix_get_fd (_readchannel), &readfds);
if ((select_val = select (FD_SETSIZE, &readfds, NULL, NULL, tvp)) > 0)
- {
- gimp_single_message ();
- }
+ {
+ gimp_single_message ();
+ }
else if (select_val == -1 && errno != EINTR)
- {
- perror ("gimp_extension_process");
- gimp_quit ();
- }
+ {
+ perror ("gimp_extension_process");
+ gimp_quit ();
+ }
}
while (select_val == -1 && errno == EINTR);
#else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]