Commit Diff


commit - 5c5136c581793e9da589af3917c7b59619481ebb
commit + fed328ccfa447dfd906ea4f6906d21e7d425730e
blob - d13a58d7ceada39cdf8a15fba84eeb29089826fd
blob + 6cb65d8096123ddd06eef8167891b1ccea4de98d
--- tog/tog.c
+++ tog/tog.c
@@ -77,14 +77,10 @@ struct tog_cmd tog_commands[] = {
 };
 
 /* globals */
-static struct tog_log_view {
-	WINDOW *window;
-	PANEL *panel;
-} tog_log_view;
-static struct tog_diff_view {
+static struct tog_view {
 	WINDOW *window;
 	PANEL *panel;
-} tog_diff_view;
+} tog_log_view, tog_diff_view;
 
 __dead void
 usage_log(void)