Skip to content
Snippets Groups Projects
Commit 6b730ce7 authored by Danny Auble's avatar Danny Auble
Browse files

fixed for non-bgl systems.

parent 440c05aa
No related branches found
No related tags found
No related merge requests found
...@@ -1988,9 +1988,9 @@ start_again: ...@@ -1988,9 +1988,9 @@ start_again:
x); x);
new_node: new_node:
debug("starting at %d%d%d", debug("starting at %d%d%d",
start[X], start[X]
#ifdef HAVE_BGL #ifdef HAVE_BGL
start[Y], , start[Y],
start[Z] start[Z]
#endif #endif
); );
...@@ -3115,8 +3115,9 @@ static int _find_next_free_using_port_2(pa_switch_t *curr_switch, ...@@ -3115,8 +3115,9 @@ static int _find_next_free_using_port_2(pa_switch_t *curr_switch,
if(node_tar[X] == pa_node->coord[X] if(node_tar[X] == pa_node->coord[X]
#ifdef HAVE_BGL #ifdef HAVE_BGL
&& node_tar[Y] == pa_node->coord[Y] && node_tar[Y] == pa_node->coord[Y]
&& node_tar[Z] == pa_node->coord[Z]) && node_tar[Z] == pa_node->coord[Z]
#endif #endif
)
{ {
broke = 1; broke = 1;
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment