From: Costa Shulyupin Date: Sun, 24 Apr 2022 07:20:26 +0000 (+0300) Subject: sgraph: remove trailing spaces X-Git-Tag: 6.0.1~22^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e34e906c023c8fcd4ecf3e217b74ddfb8d9ed26b;p=graphviz sgraph: remove trailing spaces --- diff --git a/lib/ortho/sgraph.h b/lib/ortho/sgraph.h index 228aa78d5..26af31af4 100644 --- a/lib/ortho/sgraph.h +++ b/lib/ortho/sgraph.h @@ -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 {