Skip to content

Commit

Permalink
Bug 735726 - [PATCH] Fix missing break in switch case statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Aug 30, 2014
1 parent 32aa9f2 commit b59edd2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/dot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4667,9 +4667,10 @@ void DotGroupCollaboration::Edge::write( FTextStream &t ) const
}
switch( eType )
{
case thierarchy :
case thierarchy:
arrowStyle = "dir=\"back\", style=\"solid\"";
default :
break;
default:
t << ", color=\"" << linkTypeColor[(int)eType] << "\"";
break;
}
Expand Down

0 comments on commit b59edd2

Please sign in to comment.