[gegl] process: Remove trailing white spaces



commit 1c614ae6b290e9fa6d74dc2c58ff47ce16fd4c64
Author: Debarshi Ray <debarshir gnome org>
Date:   Thu Jan 14 16:20:49 2016 +0100

    process: Remove trailing white spaces

 gegl/process/gegl-graph-traversal.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/gegl/process/gegl-graph-traversal.c b/gegl/process/gegl-graph-traversal.c
index eff8bc4..bd481d1 100644
--- a/gegl/process/gegl-graph-traversal.c
+++ b/gegl/process/gegl-graph-traversal.c
@@ -156,19 +156,19 @@ gegl_graph_get_bounding_box (GeglGraphTraversal *path)
 /**
  * gegl_graph_prepare:
  * @path: The traversal path
- * 
+ *
  * Prepare all nodes, initializing their output formats and have rects.
  */
 void
 gegl_graph_prepare (GeglGraphTraversal *path)
 {
   GList *list_iter = NULL;
-  
+
   for (list_iter = path->dfs_path; list_iter; list_iter = list_iter->next)
   {
     GeglNode *node = GEGL_NODE (list_iter->data);
     GeglOperation *operation = node->operation;
-    
+
     g_mutex_lock (&node->mutex);
 
     gegl_operation_prepare (operation);
@@ -182,11 +182,11 @@ gegl_graph_prepare (GeglGraphTraversal *path)
       }
 
     g_mutex_unlock (&node->mutex);
-    
+
     if (!g_hash_table_contains (path->contexts, node))
       {
         GeglOperationContext *context = gegl_operation_context_new (node->operation);
-        
+
         g_hash_table_insert (path->contexts,
                              node,
                              context);
@@ -198,7 +198,7 @@ gegl_graph_prepare (GeglGraphTraversal *path)
  * gegl_graph_prepare_request:
  * @path: The traversal path
  * @request_roi: The request rect
- * 
+ *
  * Prepare the graph to render request_roi, this will calculate
  * the area that needs to be rendered from each node in the
  * graph to fulfill this request.


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