diff --git a/src/sview/sview.c b/src/sview/sview.c
index 70b96d62904fbf8c84c0edacedace6a1be8e9992..b3d9c51a6a92276d0dd5887c96e17142b88d451e 100644
--- a/src/sview/sview.c
+++ b/src/sview/sview.c
@@ -1098,12 +1098,11 @@ extern void _change_cluster_main(GtkComboBox *combo, gpointer extra)
 	 * we have to do is grab that and we are set. */
 	node_tab = gtk_container_get_focus_child(GTK_CONTAINER(node_tab));
 #else
+	/* See above comment.  Since gtk_container_get_focus_child
+	 * doesn't exist yet we will just traverse the childern until
+	 * we find the label widget and then break.
+	 */
 	{
-		/* See above comment.  Since
-		   gtk_container_get_focus_child doesn't exist yet we
-		   will just traverse the childern until we find the
-		   label widget and then break.
-		*/
 		int i = 0;
 		GList *childern = gtk_container_get_children(
 			GTK_CONTAINER(node_tab));