]> granicus.if.org Git - graphviz/commitdiff
sgraph: remove trailing spaces
authorCosta Shulyupin <constantine.shulyupin@gmail.com>
Sun, 24 Apr 2022 07:20:26 +0000 (10:20 +0300)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 29 Aug 2022 14:40:43 +0000 (07:40 -0700)
lib/ortho/sgraph.h

index 228aa78d5c206da1f3f3da4de95761284fe9d482..26af31af4890b3a00da43e8aa3f7e3483923975e 100644 (file)
@@ -1,5 +1,6 @@
+
 /*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property 
+ * Copyright (c) 2011 AT&T Intellectual Property
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -27,7 +28,7 @@ struct snode {
     /* edges incident on this node 
      * -- stored as indices of the edges array in the graph
      */
-  int* adj_edge_list;  
+  int* adj_edge_list;
   int index;
   bool isVert;  /* true if node corresponds to vertical segment */
 };
@@ -38,7 +39,7 @@ struct sedge {
       /* end-points of the edge 
        * -- stored as indices of the nodes vector in the graph
        */
-  int v1, v2;      
+  int v1, v2;
 };
 
 typedef struct {