]> granicus.if.org Git - neomutt/commitdiff
Reduce variable scope - version.c
authorFederico Kircheis <federico.kircheis@gmail.com>
Wed, 7 Mar 2018 17:38:15 +0000 (18:38 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 8 Mar 2018 02:27:15 +0000 (02:27 +0000)
version.c

index 803800f4eb621538611e781bdf9df759044da229..667dcc621d7e92a833773493e490859521c919d9 100644 (file)
--- a/version.c
+++ b/version.c
@@ -291,13 +291,13 @@ static struct CompileOptions comp_opts[] = {
  */
 static void print_compile_options(struct CompileOptions *co)
 {
-  size_t len, used = 2;
+  size_t used = 2;
   bool tty = stdout ? isatty(fileno(stdout)) : false;
 
   printf("  ");
   for (int i = 0; co[i].name; i++)
   {
-    len = strlen(co[i].name) + 2; /* +/- and a space */
+    const size_t len = strlen(co[i].name) + 2; /* +/- and a space */
     if ((used + len) > SCREEN_WIDTH)
     {
       used = 2;