summaryrefslogtreecommitdiff
path: root/pluma/pluma-debug.c
diff options
context:
space:
mode:
authorLaurent Napias <[email protected]>2019-06-29 10:29:13 +0200
committerZenWalker <[email protected]>2019-07-06 21:46:58 +0200
commitdb655f3fb2f67b695d36369e584fcb598e0e1bea (patch)
treeff7a4404cb6f0d1d8ca3a08ee50c60641641f1b4 /pluma/pluma-debug.c
parent5153fb08a2e26015d07e7b3805de15d38bd05a9d (diff)
downloadpluma-db655f3fb2f67b695d36369e584fcb598e0e1bea.tar.bz2
pluma-db655f3fb2f67b695d36369e584fcb598e0e1bea.tar.xz
Remove trailing whitespaces
Diffstat (limited to 'pluma/pluma-debug.c')
-rw-r--r--pluma/pluma-debug.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/pluma/pluma-debug.c b/pluma/pluma-debug.c
index b35376b2..b8111423 100644
--- a/pluma/pluma-debug.c
+++ b/pluma/pluma-debug.c
@@ -4,7 +4,7 @@
*
* Copyright (C) 1998, 1999 Alex Roberts, Evan Lawrence
* Copyright (C) 2000, 2001 Chema Celorio, Paolo Maggi
- * Copyright (C) 2002 - 2005 Paolo Maggi
+ * Copyright (C) 2002 - 2005 Paolo Maggi
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,13 +18,13 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
-
+
/*
- * Modified by the pluma Team, 1998-2005. See the AUTHORS file for a
- * list of people on the pluma Team.
+ * Modified by the pluma Team, 1998-2005. See the AUTHORS file for a
+ * list of people on the pluma Team.
* See the ChangeLog files for a list of changes.
*
* $Id$
@@ -87,7 +87,7 @@ pluma_debug_init (void)
if (g_getenv ("PLUMA_DEBUG_SAVER") != NULL)
debug = debug | PLUMA_DEBUG_SAVER;
-out:
+out:
#ifdef ENABLE_PROFILING
if (debug != PLUMA_NO_DEBUG)
@@ -104,7 +104,7 @@ pluma_debug_message (PlumaDebugSection section,
const gchar *format, ...)
{
if (G_UNLIKELY (debug & section))
- {
+ {
#ifdef ENABLE_PROFILING
gdouble seconds;
g_return_if_fail (timer != NULL);
@@ -121,11 +121,11 @@ pluma_debug_message (PlumaDebugSection section,
#ifdef ENABLE_PROFILING
seconds = g_timer_elapsed (timer, NULL);
- g_print ("[%f (%f)] %s:%d (%s) %s\n",
+ g_print ("[%f (%f)] %s:%d (%s) %s\n",
seconds, seconds - last, file, line, function, msg);
- last = seconds;
+ last = seconds;
#else
- g_print ("%s:%d (%s) %s\n", file, line, function, msg);
+ g_print ("%s:%d (%s) %s\n", file, line, function, msg);
#endif
fflush (stdout);
@@ -146,13 +146,13 @@ void pluma_debug (PlumaDebugSection section,
g_return_if_fail (timer != NULL);
- seconds = g_timer_elapsed (timer, NULL);
- g_print ("[%f (%f)] %s:%d (%s)\n",
+ seconds = g_timer_elapsed (timer, NULL);
+ g_print ("[%f (%f)] %s:%d (%s)\n",
seconds, seconds - last, file, line, function);
last = seconds;
#else
g_print ("%s:%d (%s)\n", file, line, function);
-#endif
+#endif
fflush (stdout);
}
}