Make the clock tab the first tab

Change the order of the tabs - Clock, regulator, sensors
diff --git a/powerdebug.c b/powerdebug.c
index 197f255..e12d917 100644
--- a/powerdebug.c
+++ b/powerdebug.c
@@ -23,9 +23,10 @@
 double ticktime = 10.0;  /* in seconds */
 
 char *win_names[TOTAL_FEATURE_WINS] = {
-	"Regulators",
 	"Clocks",
-	"Sensors" };
+	"Regulators",
+	"Sensors"
+};
 
 void usage(void)
 {
@@ -156,7 +157,7 @@
 	}
 
 	if (!dump && selectedwindow == -1)
-		selectedwindow = REGULATOR;
+		selectedwindow = CLOCK;
 
 	init_regulator_ds();