Code

toggle_date_option: use passed date argument instead of opt_date
authorJonas Fonseca <jonas.fonseca@savoirfairelinux.com>
Fri, 11 Dec 2009 22:06:37 +0000 (17:06 -0500)
committerJonas Fonseca <jonas.fonseca@savoirfairelinux.com>
Fri, 11 Dec 2009 22:06:37 +0000 (17:06 -0500)
tig.c

diff --git a/tig.c b/tig.c
index 6957ff5959575478fec9dfe9110d7cb1ec15a66d..935f4471e5c31927d0c24f594ddf6b26631928bc 100644 (file)
--- a/tig.c
+++ b/tig.c
@@ -2458,9 +2458,9 @@ toggle_date_option(enum date *date)
                "short"
        };
 
-       opt_date = (opt_date + 1) % ARRAY_SIZE(help);
+       *date = (*date + 1) % ARRAY_SIZE(help);
        redraw_display(FALSE);
-       report("Displaying %s dates", help[opt_date]);
+       report("Displaying %s dates", help[*date]);
 }
 
 static void