diff options
author | Ondrej Filip <feela@network.cz> | 2005-02-14 12:58:46 +0100 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2005-02-14 12:58:46 +0100 |
commit | 030d3b387edae4a30fb524ed839be020b7b8df8e (patch) | |
tree | 50eaaf2acc66a3a66da0ae1977eb37ad2f0aa3bd /nest/config.Y | |
parent | b181f444a6538b03a02296f02928e3c131b251a6 (diff) | |
download | bird-030d3b387edae4a30fb524ed839be020b7b8df8e.tar bird-030d3b387edae4a30fb524ed839be020b7b8df8e.zip |
Small changed to reduce the number of warnings.
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/config.Y b/nest/config.Y index 744c069..91c3363 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -241,7 +241,7 @@ password_begin_list: PASSWORDS { this_p_list = cfg_alloc(sizeof(list)); init_list(this_p_list); - $$ = this_p_list; + $$ = (void *) this_p_list; } ; @@ -257,7 +257,7 @@ password_begin: this_p_item->accto = TIME_INFINITY; this_p_item->id = 1; add_tail(this_p_list, &this_p_item->n); - $$ = this_p_list; + $$ = (void *) this_p_list; } ; |