Merge pull request #519 from CTD1/master

Fix VS Warning about bool - int convertion
This commit is contained in:
Enno Rehling 2016-07-15 11:10:12 +02:00 committed by GitHub
commit 9f836e2f4b
1 changed files with 1 additions and 1 deletions

View File

@ -1059,7 +1059,7 @@ int rule_give(void)
bool markets_module(void)
{
return config_get_int("modules.markets", 0);
return (bool)config_get_int("modules.markets", 0);
}
static struct param *configuration;