diff options
author | Ondrej Filip <feela@network.cz> | 2013-02-10 19:04:08 +0100 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2013-02-10 19:04:08 +0100 |
commit | 155134f3960bc06a18c8c7d9a97181b786d77a3a (patch) | |
tree | 46451c7be1ed6be2752a78b84c3d23eda3cfb0dd /proto/ospf/config.Y | |
parent | c6a2fe64bed8dc67af0e868052b055aa0f45cdf2 (diff) |
A few semicolons added to decrease a number of warnings.
Diffstat (limited to 'proto/ospf/config.Y')
-rw-r--r-- | proto/ospf/config.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index a617292e..3f09afba 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -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; } |