OpenBSD wants static before const

This is not really a problem, but to keep OpenBSD quiet we put static
before const (-W warning).
This commit is contained in:
Cary R 2010-11-02 14:38:25 -07:00 committed by Stephen Williams
parent 2d83955182
commit 7ddb556327
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ static unsigned args_after_notifier;
* These are some common strength pairs that are used as defaults when
* the user is not otherwise specific.
*/
const static struct str_pair_t pull_strength = { IVL_DR_PULL, IVL_DR_PULL };
const static struct str_pair_t str_strength = { IVL_DR_STRONG, IVL_DR_STRONG };
static const struct str_pair_t pull_strength = { IVL_DR_PULL, IVL_DR_PULL };
static const struct str_pair_t str_strength = { IVL_DR_STRONG, IVL_DR_STRONG };
static list<pair<perm_string,PExpr*> >* make_port_list(char*id, PExpr*expr)
{