]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
A few semicolons added to decrease a number of warnings.
authorOndrej Filip <feela@network.cz>
Sun, 10 Feb 2013 18:04:08 +0000 (19:04 +0100)
committerOndrej Filip <feela@network.cz>
Sun, 10 Feb 2013 18:04:08 +0000 (19:04 +0100)
proto/ospf/config.Y
proto/radv/config.Y

index a617292e4fbb01b7329b192bbf425b52303cd7f1..3f09afba652e89815d4582e108089b50d25918e2 100644 (file)
@@ -440,7 +440,7 @@ lsadb_args:
      $$ = cfg_allocz(sizeof(struct lsadb_show_data));
    }
  | lsadb_args GLOBAL { $$ = $1; $$->scope = LSA_SCOPE_AS; }
- | lsadb_args AREA idval { $$ = $1; $$->scope = LSA_SCOPE_AREA; $$->area = $3 }
+ | lsadb_args AREA idval { $$ = $1; $$->scope = LSA_SCOPE_AREA; $$->area = $3; }
  | lsadb_args LINK { $$ = $1; $$->scope = 1; /* hack, 0 is no filter */ }
  | lsadb_args TYPE NUM { $$ = $1; $$->type = $3; }
  | lsadb_args LSID idval { $$ = $1; $$->lsid = $3; }
index fbec5a0aa758552c74d26db857fcd66c35091277..c5b7aaee4358e195e7a6af6cae24d4e3d6cfebfb 100644 (file)
@@ -290,8 +290,8 @@ radv_mult:
  ;
 
 radv_sensitive:
-   /* empty */ { $$ = -1 }
- | SENSITIVE bool { $$ = $2 }
+   /* empty */ { $$ = -1; }
+ | SENSITIVE bool { $$ = $2; }
  ;
 
 CF_CODE